Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: factory optimisations

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