123456789101112131415161718192021222324 |
- #ifndef BOOST_H_INCLUDED
- #define BOOST_H_INCLUDED
- #include "../Power.h"
- /** \brief Boost : hérite de Power
- * \last Post mortem implémenté
- * \next
- *
- *
- */
- class Boost : public Power
- {
- public:
- Boost(SDL_Surface *screen, Collisions *gestionnaireCollisons, Sounderer *mediaPlayer, SDL_Surface* apparence);
- virtual ~Boost();
- virtual void usePower(int orientation, int &x, int &y, int const &ID);
- virtual void postMortemPower(int const &x, int const &y, int const &ID);
- };
- #endif // BOOST_H_INCLUDED
|