forked from skypjack/entt
-
Notifications
You must be signed in to change notification settings - Fork 0
State
Alan Jefferson edited this page Jan 23, 2020
·
2 revisions
Touch on the cost/benefit of using..
namespace System {
void MyMember();
}
In favour of..
class MySystem {
void my_member();
};
And why registries make for good singletons.
Also touch on the advantages of keeping state in components rather than instances of classes.
EnTT - Fast and Reliable ECS (Entity Component System)
Table of contents
Examples
Blog
- RAII
- Polymorphism
- Shared Components
- Intent System
- Input Handling
- Undo
- Operator Stack
- State
- Resources
- Interpolation
Resources
Extras