summaryrefslogtreecommitdiff
path: root/include/engine.h
blob: 6925b5fc1507ec8c6ecec84cfc36a8c6b1ce46f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __ENGINE_H__
#define __ENGINE_H__

#include <SDL.h>
#include <Handle.h>
#include <Exceptions.h>

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