Trender.h 551 B

12345678910111213141516171819202122232425
  1. #ifndef TRENDER_H
  2. #define TRENDER_H
  3. #include "../Power.h"
  4. /** \brief Trender : hérite de Power
  5. * \last Création
  6. * \next Mise en fonctionnement
  7. *
  8. *
  9. */
  10. class Trender : public Power
  11. {
  12. public:
  13. Trender(SDL_Surface *screen, Collisions *gestionnaireCollisons, Sounderer *mediaPlayer, SDL_Surface* apparence);
  14. virtual ~Trender();
  15. virtual void usePower(int orientation, int &x, int &y, int const &ID);
  16. virtual void postMortemPower(int const &x, int const &y, int const &ID);
  17. };
  18. #endif // TRENDER_H