123456789101112131415161718192021222324 |
- #ifndef EXPANSION_H_INCLUDED
- #define EXPANSION_H_INCLUDED
- #include "../Power.h"
- /** \brief Expansion : hérite de Power
- * \last Relecture et premières corrections
- * \next
- *
- *
- */
- class Expansion : public Power
- {
- public:
- Expansion(SDL_Surface *screen, Collisions *gestionnaireCollisons, Sounderer *mediaPlayer, SDL_Surface* apparence);
- virtual ~Expansion();
- 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 // EXPANSION_H_INCLUDED
|