#ifndef ECS_H #define ECS_H #include "utils.h" struct Entity {}; struct Component; struct System; struct EntityPool { Entity entities[]; }; #endif