string arrays and started work on ecs

This commit is contained in:
herbglitch 2022-12-19 23:16:17 -07:00
parent 5a0d1af942
commit d4731d3961
6 changed files with 186 additions and 59 deletions

View file

@ -0,0 +1,11 @@
#include "arc/engine/ecs.h"
#include "arc/std/vector.h"
struct ARC_ECS {
ARC_Vector *components;
};
struct ARC_ECSComponent {
ARC_Vector *functions;
ARC_Vector *data;
};