Menestrel.h 272 B

12345678910111213141516
  1. #ifndef MENESTREL_H
  2. #define MENESTREL_H
  3. #include "Joueur.h"
  4. #include "Input.h"
  5. class Menestrel : public Joueur
  6. {
  7. public:
  8. Menestrel(Input *input, Niveau *terrain, Controle controle = local);
  9. ~Menestrel();
  10. void deplacer();
  11. protected:
  12. };
  13. #endif // MENESTREL_H