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

10 lines
104 B
C

#ifndef ECS_H
#define ECS_H
#include "utils.h"
struct Entity;
struct Component;
struct System;
#endif