3470a80f40
This reverts commit f2259f712d.
Conflicts:
src/GameWorld.cpp
src/Systems/PhysicsSystem.cpp
14 lines
209 B
C++
Executable File
14 lines
209 B
C++
Executable File
#ifndef Component_h__
|
|
#define Component_h__
|
|
|
|
#include "Factory.h"
|
|
#include "Entity.h"
|
|
|
|
struct Component
|
|
{
|
|
EntityID Entity;
|
|
};
|
|
|
|
class ComponentFactory : public Factory<Component*> { };
|
|
|
|
#endif // Component_h__
|