#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); private: static int inited; }; }; #endif