Bouclier.h 610 B

12345678910111213141516171819202122232425
  1. #ifndef BOUCLIER_H_INCLUDED
  2. #define BOUCLIER_H_INCLUDED
  3. #include "../Power.h"
  4. /// Last modification : 14 04 2014
  5. /** \brief Bouclier : hérite de Power
  6. * \last Post mortem implémenté
  7. * \next
  8. *
  9. *
  10. */
  11. class Bouclier : public Power
  12. {
  13. public:
  14. Bouclier(SDL_Surface *screen, Collisions *gestionnaireCollisons, Sounderer *mediaPlayer, SDL_Surface* apparence);
  15. virtual ~Bouclier();
  16. virtual void usePower(int orientation, int &x, int &y, int const &ID);
  17. virtual void postMortemPower(int const &x, int const &y, int const &ID);
  18. };
  19. #endif // BOUCLIER_H_INCLUDED