123456789101112131415161718192021222324 |
- #ifndef TELEPORT_H_INCLUDED
- #define TELEPORT_H_INCLUDED
- #include "../Power.h"
- 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
|