Teleport.h 575 B

123456789101112131415161718192021222324
  1. #ifndef TELEPORT_H_INCLUDED
  2. #define TELEPORT_H_INCLUDED
  3. #include "../Power.h"
  4. /** \brief Teleport : hérite de Power
  5. * \last Post mortem implémenté
  6. * \next
  7. *
  8. *
  9. */
  10. class Teleport : public Power
  11. {
  12. public:
  13. Teleport(SDL_Surface *screen, Collisions *gestionnaireCollisons, Sounderer *mediaPlayer, SDL_Surface* apparence);
  14. virtual ~Teleport();
  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 // TELEPORT_H_INCLUDED