Files
fishtanks/src/Component.h
T
Jace 3470a80f40 Revert "Indentation style changed to Horstmann"
This reverts commit f2259f712d.

Conflicts:

	src/GameWorld.cpp
	src/Systems/PhysicsSystem.cpp
2014-04-12 01:48:15 +02:00

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__