Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: renamed all the \param → @param and so on in Doxygen tags.
Thanks a lot to the kDevelop team. this took since the last commit :)

File size: 486 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  friend class World;
17
18 public:
19  TestBullet (Weapon* weapon);
20  virtual ~TestBullet ();
21
22  virtual void hit (WorldEntity* weapon, Vector* loc);
23  virtual void destroy ();
24
25  virtual void tick (float time);
26  virtual void draw ();
27 
28};
29
30#endif /* _TEST_BULLET_H */
Note: See TracBrowser for help on using the repository browser.