Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 25, 2005, 11:38:46 AM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: Turret Power Up defined

File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/power_ups/turret_power_up.h

    r5433 r5434  
    11/*!
    2  * @file power_up.h
     2 * @file turret_power_up.h
    33 * @brief A class representing a PowerUp in the world.
    44*/
    55
    6 #ifndef _POWER_UP_H
    7 #define _POWER_UP_H
     6#ifndef _TURRET_POWER_UP_H
     7#define _TURRET_POWER_UP_H
    88
    9 #include "world_entity.h"
     9#include "power_up.h"
    1010
    11 class PowerUp : WorldEntity {
     11class TurretPowerUp : public PowerUp {
    1212
    1313 public:
    14   PowerUp ();
    15   virtual ~PowerUp ();
     14  TurretPowerUp();
     15  TurretPowerUp(const TiXmlElement* root);
     16  virtual ~TurretPowerUp ();
    1617
     18  private:
     19   void init();
     20   void loadParams(const TiXmlElement* root);
    1721};
    1822
    19 #endif /* _POWER_UP_H */
     23#endif /* _TURRET_POWER_UP_H */
Note: See TracChangeset for help on using the changeset viewer.