Tunnel.h 542 B

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