Changeset 5456 in orxonox.OLD for trunk/src/world_entities/weapons/rocket.h
- Timestamp:
- Oct 30, 2005, 12:54:23 AM (20 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/weapons/rocket.h
r5449 r5456 1 1 /*! 2 \projectile.h3 * a projectile, that is been shooted by a weapon2 * @file rocket.h 3 * @brief a Rocket Projectile 4 4 */ 5 5 6 #ifndef _ TEST_BULLET_H7 #define _ TEST_BULLET_H6 #ifndef _ROCKET_H 7 #define _ROCKET_H 8 8 9 9 #include "projectile.h" … … 15 15 class FastFactory; 16 16 17 class TestBullet : public Projectile17 class Rocket : public Projectile 18 18 { 19 19 public: 20 TestBullet ();21 virtual ~ TestBullet ();20 Rocket (); 21 virtual ~Rocket (); 22 22 23 23 … … 45 45 }; 46 46 47 #endif /* _ TEST_BULLET_H */47 #endif /* _ROCKET_H */
Note: See TracChangeset
for help on using the changeset viewer.