12345678910111213141516 |
- #ifndef MENESTREL_H
- #define MENESTREL_H
- #include "Joueur.h"
- #include "Input.h"
- class Menestrel : public Joueur
- {
- public:
- Menestrel(Input *input, Niveau *terrain, Controle controle = local);
- ~Menestrel();
- void deplacer();
- protected:
- };
- #endif // MENESTREL_H
|