Changeset 5433 in orxonox.OLD for trunk/src/world_entities/power_ups
- Timestamp:
- Oct 25, 2005, 11:15:33 AM (19 years ago)
- Location:
- trunk/src/world_entities/power_ups
- Files:
-
- 1 added
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
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.