#ifndef __ENGINE_H__ #define __ENGINE_H__ #include #include #include namespace mogltk { class engine : public Base { public: static int setup() throw(GeneralException); static int GetInited(); static SDL_RWops * RWFromHandle(Handle *) throw (GeneralException); static void pollevents(); static void setappactive(bool); static bool getappactive(); static void setcursorvisible(bool); static bool getcursorvisible(); private: static int inited; static bool appactive; static bool cursorvisible; }; }; #endif