Added barebones ECS prototype

This commit is contained in:
sippeangelo
2015-12-01 16:47:54 +01:00
parent 6ca1977e78
commit a5affd2dc2
7 changed files with 588 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef Entity_h__
#define Entity_h__
typedef unsigned int EntityID;
struct Entity
{
unsigned int EntityID = 0;
};
#endif