CIUpdate
- added build test - probably fixed some trash - coverage test should only wait for test_dmd_debug
This commit is contained in:
parent
d47a5c3e5c
commit
b434d851ed
4 changed files with 66 additions and 11 deletions
|
|
@ -442,11 +442,12 @@ export struct EntityManager
|
|||
|
||||
static struct ComponentsCounts
|
||||
{
|
||||
uint readonly;
|
||||
uint mutable;
|
||||
uint excluded;
|
||||
uint optional;
|
||||
uint req;
|
||||
//one more than should be to prevent null arrays (zero length arrays)
|
||||
uint readonly = 1;
|
||||
uint mutable = 1;
|
||||
uint excluded = 1;
|
||||
uint optional = 1;
|
||||
uint req = 1;
|
||||
}
|
||||
|
||||
static ComponentsCounts getComponentsCounts()()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue