Changeset 5434 in orxonox.OLD for trunk/src/world_entities/power_ups/turret_power_up.h
- Timestamp:
- Oct 25, 2005, 11:38:46 AM (20 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/power_ups/turret_power_up.h
r5433 r5434 1 1 /*! 2 * @file power_up.h2 * @file turret_power_up.h 3 3 * @brief A class representing a PowerUp in the world. 4 4 */ 5 5 6 #ifndef _ POWER_UP_H7 #define _ POWER_UP_H6 #ifndef _TURRET_POWER_UP_H 7 #define _TURRET_POWER_UP_H 8 8 9 #include " world_entity.h"9 #include "power_up.h" 10 10 11 class PowerUp : WorldEntity{11 class TurretPowerUp : public PowerUp { 12 12 13 13 public: 14 PowerUp (); 15 virtual ~PowerUp (); 14 TurretPowerUp(); 15 TurretPowerUp(const TiXmlElement* root); 16 virtual ~TurretPowerUp (); 16 17 18 private: 19 void init(); 20 void loadParams(const TiXmlElement* root); 17 21 }; 18 22 19 #endif /* _ POWER_UP_H */23 #endif /* _TURRET_POWER_UP_H */
Note: See TracChangeset
for help on using the changeset viewer.