/*! * @file power_up.h * @brief A class representing a PowerUp in the world. */ #ifndef _POWER_UP_H #define _POWER_UP_H #include "world_entity.h" class PowerUp : public WorldEntity { public: PowerUp (); virtual ~PowerUp (); void loadParam(const TiXmlElement* root); }; #endif /* _POWER_UP_H */