summaryrefslogtreecommitdiff
path: root/include/engine.h
diff options
context:
space:
mode:
authorpixel <pixel>2002-12-25 02:36:16 +0000
committerpixel <pixel>2002-12-25 02:36:16 +0000
commit05b3214cc4af88977e09163ce8e3b6cc7256cebe (patch)
tree3c93af573848f35ed7508db2a7c91936714e0d8e /include/engine.h
parent041b4dea4bf8413835ee8a7d0520ab5016c69799 (diff)
Added SDL_RWops things
Diffstat (limited to 'include/engine.h')
-rw-r--r--include/engine.h3
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;
};