User profile: itsArtem

User info
User name:itsArtem
Name:Artem Katerynych
History
Joined:
Number of posts:14
Latest posts:

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 work
That’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]?