PRs containing AI-generated code will NOT BE ACCEPTED!
core/: Essential general features for the basegame/: Game specific implemented things
- Try to use Clang instead of MSVC and fix all compiler warnings
- All new features should be implemented as
Commands. gta/features/self/Suicide.cpp contains an example of a normalCommand, and gta/features/self/Godmode.cpp contains aLoopedCommand(a command that runs every frame) - When constructing constexpr arrays, make sure to use
std::to_arrayinstead of relying on automatic deduction in order to prevent issues when building with Clang - Use
static_castandreinterpret_castinstead of C-style casts - Use
std::string_viewfor immutable string parameters