Setup ecs system scaffolding

This commit is contained in:
2026-07-02 13:09:11 +01:00
parent 821255a065
commit 4c53e5fee6
3 changed files with 25 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef ECS_H
#define ECS_H
#include "utils.h"
struct Entity;
struct Component;
struct System;
#endif