Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/main_reto/include/OrxonoxShip.h @ 127

Last change on this file since 127 was 127, checked in by rgrieder, 17 years ago
File size: 386 bytes
Line 
1#ifndef __OrxonoxShip__
2#define __OrxonoxShip__
3
4#include "Ogre.h"
5
6using namespace Ogre;
7
8class OrxonoxShip
9{
10public:
11        OrxonoxShip(SceneManager*, SceneNode*);
12        virtual ~OrxonoxShip();
13
14        /*void setThrust(float);
15        void setSideThrust(float);*/
16
17        virtual bool initialise();
18
19protected:
20        SceneManager *mSceneMgr;
21        SceneNode *mRootNode;
22        Entity *mShip;
23};
24
25
26#endif
Note: See TracBrowser for help on using the repository browser.