Files
escape-the-dawn/Escape-the-Dawn/System.h
T
2014-03-03 20:08:08 +01:00

20 lines
288 B
C++

#ifndef System_h__
#define System_h__
#include "Entity.h"
class World;
class System
{
public:
System(World* world) : m_World(world) { }
virtual ~System() { }
virtual void Update(double dt, EntityID entity, EntityID parent) = 0;
protected:
World* m_World;
};
#endif // System_h__