- added build test
 - probably fixed some trash
- coverage test should only wait for test_dmd_debug
This commit is contained in:
Dawid Masiukiewicz 2020-04-25 11:09:35 +00:00
parent d47a5c3e5c
commit b434d851ed
4 changed files with 66 additions and 11 deletions

View file

@ -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()()