#ifndef BOMB_H #define BOMB_H #include "../Power.h" /** \brief Bomb : hérite de Power * \last Création * \next Mise en fonctionnement * * */ class Bomb : public Power { public: Bomb(SDL_Surface *screen, Collisions *gestionnaireCollisons, Sounderer *mediaPlayer, SDL_Surface* apparence); virtual ~Bomb(); 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 // BOMB_H