#ifndef ENGINE_H #define ENGINE_H #include #include #include "stage.h" class Engine : public Application { private: FTFont* font; Texture* background; bool paused; unsigned int frames; unsigned int lastframes; float fps; protected: virtual void event_keypress(SDLKey key); virtual void update(); public: Stage* stage; Engine(); }; #endif