summaryrefslogtreecommitdiff
path: root/include/engine.h
blob: d739bdec23517dacac059575f3ddb429c836882c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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);
	static void pollevents();
      private:
        static int inited;
    };
};

#endif