Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/main_reto/include/Bullet.h @ 133

Last change on this file since 133 was 133, checked in by rgrieder, 17 years ago
File size: 258 bytes
Line 
1#ifndef __Bullet__
2#define __Bullet__
3
4#include "Ogre.h"
5
6using namespace Ogre;
7
8class Bullet
9{
10public:
11        SceneNode *mNode;
12        Entity *mEntity;
13        Vector3 mSpeed;
14
15        Bullet(SceneNode*, Entity*, Vector3);
16        ~Bullet();
17
18protected:
19
20};
21
22
23#endif
Note: See TracBrowser for help on using the repository browser.