diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/engine.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/engine.h b/include/engine.h index 7df7e9f..6925b5f 100644 --- a/include/engine.h +++ b/include/engine.h @@ -1,6 +1,8 @@ #ifndef __ENGINE_H__ #define __ENGINE_H__ +#include <SDL.h> +#include <Handle.h> #include <Exceptions.h> namespace mogltk { @@ -8,6 +10,7 @@ namespace mogltk { public: static int setup() throw(GeneralException); static int GetInited(); + static SDL_RWops * RWFromHandle(Handle *) throw (GeneralException); private: static int inited; }; |