"Basic" entity component system. Almost.

This commit is contained in:
2014-02-25 19:26:34 +01:00
parent ec426301a2
commit 369ff782f1
7 changed files with 184 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef Component_h__
#define Component_h__
#include <memory>
#include "Entity.h"
#include "ComponentFactory.h"
struct Component
{
EntityID Entity;
};
#endif // Component_h__