123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
-
-
- #ifndef _OPENRAIDER_H_
- #define _OPENRAIDER_H_
-
- #include "Window.h"
-
-
- class OpenRaider {
- public:
-
-
-
- OpenRaider();
-
-
-
- ~OpenRaider();
-
-
-
- int loadConfig(const char *config);
-
- int initialize();
-
- void run();
-
- private:
- bool mInit;
- bool mRunning;
- Window *mWindow;
- };
-
- #endif
|