12 lines
160 B
C
12 lines
160 B
C
#ifndef Component_h__
|
|
#define Component_h__
|
|
|
|
#include "ComponentFactory.h"
|
|
#include "Entity.h"
|
|
|
|
struct Component
|
|
{
|
|
EntityID Entity;
|
|
};
|
|
|
|
#endif // Component_h__
|