// // Deus Hax (working title) // Copyright (c) 2010 Sam Hocevar // // // The Ticker class // ---------------- // The Ticker is a static class that registers entities and ticks them. // #if !defined __DH_TICKER_H__ #define __DH_TICKER_H__ #include #include "entity.h" class Ticker { public: static void Register(Entity *entity); static void TickGame(); static void TickRender(); static void ClampFps(float delta_time); }; #endif // __DH_TICKER_H__