Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 127 was 127, checked in by rgrieder, 16 years ago
File size: 329 bytes
Line 
1#ifndef __SteerableNode__
2#define __SteerableNode__
3
4#include "Ogre.h"
5
6using namespace Ogre;
7
8class SteerableNode
9{
10public:
11        SteerableNode(SceneManager*, const Ogre::String&);
12        SteerableNode(SceneManager*);
13        virtual ~SteerableNode();
14
15        virtual bool initialise();
16
17protected:
18        SceneNode *mNode;
19};
20
21
22#endif
Note: See TracBrowser for help on using the repository browser.