Changeset 127 for code/branches/main_reto/include
- Timestamp:
- Oct 30, 2007, 10:41:04 PM (17 years ago)
- Location:
- code/branches/main_reto/include
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/main_reto/include/OrxonoxShip.h
r126 r127 6 6 using namespace Ogre; 7 7 8 class OrxonoxShip : public Entity8 class OrxonoxShip 9 9 { 10 10 public: 11 OrxonoxShip( const Ogre::String, Ogre::MeshPtr&);11 OrxonoxShip(SceneManager*, SceneNode*); 12 12 virtual ~OrxonoxShip(); 13 14 /*void setThrust(float); 15 void setSideThrust(float);*/ 13 16 14 17 virtual bool initialise(); 15 18 16 19 protected: 20 SceneManager *mSceneMgr; 21 SceneNode *mRootNode; 22 Entity *mShip; 17 23 }; 18 24 -
code/branches/main_reto/include/RunManager.h
r126 r127 38 38 OrxonoxScene *mScene; 39 39 Camera* mCamera; 40 S teerableNode *mShipNode;40 SceneNode *mShipNode; 41 41 OrxonoxShip *mShip; 42 42 -
code/branches/main_reto/include/SteerableNode.h
r126 r127 6 6 using namespace Ogre; 7 7 8 class SteerableNode : public SceneNode8 class SteerableNode 9 9 { 10 10 public:
Note: See TracChangeset
for help on using the changeset viewer.