/*! \file power_up.h \brief A class representing a PowerUp in the world. */ #ifndef _POWER_UP_H #define _POWER_UP_H #include "data_tank.h" #include "ability.h" #include "world_entity.h" class PowerUp : Ability, WorldEntity { public: PowerUp (); ~PowerUp (); }; #endif /* _POWER_UP_H */