14 lines
197 B
C
14 lines
197 B
C
#ifndef Component_h__
|
|
#define Component_h__
|
|
|
|
#include "Factory.h"
|
|
#include "Entity.h"
|
|
|
|
struct Component
|
|
{
|
|
EntityID Entity;
|
|
};
|
|
|
|
//&static ComponentFactory componentFactory;
|
|
|
|
#endif // Component_h__
|