diff options
author | pixel <pixel> | 2002-12-25 02:36:16 +0000 |
---|---|---|
committer | pixel <pixel> | 2002-12-25 02:36:16 +0000 |
commit | 05b3214cc4af88977e09163ce8e3b6cc7256cebe (patch) | |
tree | 3c93af573848f35ed7508db2a7c91936714e0d8e /include | |
parent | 041b4dea4bf8413835ee8a7d0520ab5016c69799 (diff) |
Added SDL_RWops things
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; }; |