Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/main_reto/include/Orxonox.h @ 123

Last change on this file since 123 was 123, checked in by rgrieder, 17 years ago
File size: 353 bytes
Line 
1#ifndef __Orxonox__
2#define __Orxonox__
3
4#include "Ogre.h"
5#include "OgreTimer.h"
6
7#include "OgreControl.h"
8#include "RunManager.h"
9
10class Orxonox
11{
12public:
13        virtual void go(void);
14
15protected:
16        OgreControl *mOgre;
17        RunManager  *mRunMgr;
18        Timer       *mTimer;
19
20        virtual bool setup(void);
21
22        virtual void destroy(void);
23
24};
25
26#endif
Note: See TracBrowser for help on using the repository browser.