15 lines
153 B
C
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
|