Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/world_entities/weapons/test_bullet.h @ 4932

Last change on this file since 4932 was 4932, checked in by bensch, 19 years ago

orxonox/trunk: factory optimisations

File size: 390 bytes
Line 
1/*!
2    \projectile.h
3  *  a projectile, that is been shooted by a weapon
4*/
5
6#ifndef _TEST_BULLET_H
7#define _TEST_BULLET_H
8
9#include "projectile.h"
10
11class Vector;
12class Weapon;
13
14class TestBullet : public Projectile
15{
16 public:
17  TestBullet ();
18  virtual ~TestBullet ();
19
20  virtual void destroy ();
21
22  virtual void tick (float time);
23  virtual void draw ();
24
25};
26
27#endif /* _TEST_BULLET_H */
Note: See TracBrowser for help on using the repository browser.