-sorting components ids in systems
-changed callUpdate() prototype
This commit is contained in:
parent
437c672478
commit
2004909642
2 changed files with 12 additions and 5 deletions
|
|
@ -63,8 +63,8 @@ package:
|
|||
///optional components
|
||||
ushort[] m_optional_components;
|
||||
|
||||
//void function(ref EntityManager.CallData data, void* entity) update;
|
||||
void* m_update; ///workaroud for DMD bug with upper line
|
||||
void function(ref EntityManager.CallData data) m_update;
|
||||
//void* m_update; ///workaroud for DMD bug with upper line
|
||||
|
||||
void function(void* system_pointer) m_enable;
|
||||
void function(void* system_pointer) m_disable;
|
||||
|
|
@ -74,4 +74,7 @@ package:
|
|||
|
||||
void function(void* system_pointer) m_begin;
|
||||
void function(void* system_pointer) m_end;
|
||||
|
||||
void function(ref EntityManager.CallData data) m_initialize;
|
||||
void function(ref EntityManager.CallData data) m_deinitilize;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue