Adapted Escape the Dawn engine.
This commit is contained in:
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#ifndef Component_h__
|
||||
#define Component_h__
|
||||
|
||||
#include "Factory.h"
|
||||
#include "Entity.h"
|
||||
|
||||
struct Component
|
||||
{
|
||||
EntityID Entity;
|
||||
};
|
||||
|
||||
class ComponentFactory : public Factory<Component*> { };
|
||||
|
||||
#endif // Component_h__
|
||||
Reference in New Issue
Block a user