Changeset 5433 in orxonox.OLD for trunk/src/world_entities
- Timestamp:
- Oct 25, 2005, 11:15:33 AM (19 years ago)
- Location:
- trunk/src/world_entities
- Files:
-
- 1 added
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/Makefile.am
r5355 r5433 23 23 weapons/turret.cc \ 24 24 weapons/test_bullet.cc \ 25 weapons/crosshair.cc 25 weapons/crosshair.cc \ 26 power_ups/power_up.cc 26 27 27 28 noinst_HEADERS = \ … … 34 35 skysphere.h \ 35 36 skybox.h \ 36 power_up.h \37 37 terrain.h \ 38 38 satellite.h \ … … 45 45 weapons/turret.h \ 46 46 weapons/test_bullet.h \ 47 weapons/crosshair.h 47 weapons/crosshair.h \ 48 power_ups/power_up.h 48 49 49 50 -
trunk/src/world_entities/power_ups/power_up.h
r5432 r5433 1 /*! 1 /*! 2 2 * @file power_up.h 3 *A class representing a PowerUp in the world.4 */ 3 * @brief A class representing a PowerUp in the world. 4 */ 5 5 6 6 #ifndef _POWER_UP_H 7 7 #define _POWER_UP_H 8 8 9 #include "data_tank.h"10 #include "ability.h"11 9 #include "world_entity.h" 12 10 13 class PowerUp : Ability, WorldEntity {11 class PowerUp : WorldEntity { 14 12 15 13 public: 16 14 PowerUp (); 17 15 virtual ~PowerUp (); 18 16 19 17 }; 20 18
Note: See TracChangeset
for help on using the changeset viewer.