evael-ecs ~master (2021-10-22T21:44:54.846741)
Dub
Repo
SystemManager
evael
ecs
system_manager
Undocumented in source.
class
SystemManager : NoGCClass {
this
();
~this
();
void
update
(float deltaTime);
void
add
(System system);
void
onEntityActivated
(Entity entity, bool[] masks);
void
onEntityKilled
(Entity entity, bool[] masks);
}
Constructors
this
this
()
Undocumented in source.
Destructor
~this
~this
()
Undocumented in source.
Members
Functions
add
void
add
(System system)
Undocumented in source. Be warned that the author may not have intended to support it.
onEntityActivated
void
onEntityActivated
(Entity entity, bool[] masks)
An entity has been activated.
onEntityKilled
void
onEntityKilled
(Entity entity, bool[] masks)
An entity has been killed.
update
void
update
(float deltaTime)
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
evael
ecs
system_manager
classes
SystemManager