diff --git a/test/main.c b/test/main.c index 14f3010..d297d9e 100644 --- a/test/main.c +++ b/test/main.c @@ -29,6 +29,9 @@ int main(void) { BECS_ECS *ecs = malloc(MinMemorySize); BECS_Init(ecs, MinMemorySize, &EcsProps); + compA A = {}; + A.thing = 1; + BECS_AddComponent(ecs, 0, 1, &A); printf("Initialized\n"); }