10 lines
104 B
C
10 lines
104 B
C
#ifndef ECS_H
|
|
#define ECS_H
|
|
|
|
#include "utils.h"
|
|
|
|
struct Entity;
|
|
struct Component;
|
|
struct System;
|
|
|
|
#endif |