Need help solving an issue in my entity component system.@helios No, ecs::Entity is a type alias for std::uint32_t
Need help solving an issue in my entity component system.I need some help fixing an issue in my entity component system. So I have a registry class which con...
for enum cannot workThat’s not how [code]for[/code] loops work. You should try using a [code]switch[/code] statement. ...
Is a class the answer to my function mess?If the variables and functions are closely related you should move them into classes. This will clea...
When to use const char * over std::string?When should you use [code]const char *[/code] over [code]std::string[/code]?