123456789101112131415161718192021222324 |
- #ifndef TELEPORT_H_INCLUDED
- #define TELEPORT_H_INCLUDED
- #include "../Power.h"
- /** \brief Teleport : hérite de Power
- * \last Post mortem implémenté
- * \next
- *
- *
- */
- class Teleport : public Power
- {
- public:
- Teleport(SDL_Surface *screen, Collisions *gestionnaireCollisons, Sounderer *mediaPlayer, SDL_Surface* apparence);
- virtual ~Teleport();
- 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 // TELEPORT_H_INCLUDED
|