Files
project_misth/include/ecs/ecs.h
T
2026-07-14 13:07:13 +01:00

15 lines
153 B
C

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