Vivid
|
Contains functions to create and manage entities and components. More...
Namespaces | |
namespace | Every |
Contains functions to create and manage entities and components.
ECS is a namespace that contains functions to create and manage entities and components. It contains a global map of entities and components. g_Entities is a map that contains all the entities, it is a map from the entity ID to the shared pointer of the entity, and g_Components is a map that contains all the components, it is a map from the component ID to the shared pointer of the component.