12345678910111213141516171819202122232425 |
- #ifndef TRENDER_H
- #define TRENDER_H
- #include "../Power.h"
- /** \brief Trender : hérite de Power
- * \last Création
- * \next Mise en fonctionnement
- *
- *
- */
- class Trender : public Power
- {
- public:
- Trender(SDL_Surface *screen, Collisions *gestionnaireCollisons, Sounderer *mediaPlayer, SDL_Surface* apparence);
- virtual ~Trender();
- 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 // TRENDER_H
|