Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/power_ups/turret_power_up.h @ 5434

Last change on this file since 5434 was 5434, checked in by bensch, 19 years ago

orxonox/trunk: Turret Power Up defined

File size: 418 bytes
Line 
1/*!
2 * @file turret_power_up.h
3 * @brief A class representing a PowerUp in the world.
4*/
5
6#ifndef _TURRET_POWER_UP_H
7#define _TURRET_POWER_UP_H
8
9#include "power_up.h"
10
11class TurretPowerUp : public PowerUp {
12
13 public:
14  TurretPowerUp();
15  TurretPowerUp(const TiXmlElement* root);
16  virtual ~TurretPowerUp ();
17
18  private:
19   void init();
20   void loadParams(const TiXmlElement* root);
21};
22
23#endif /* _TURRET_POWER_UP_H */
Note: See TracBrowser for help on using the repository browser.