You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
458 B
23 lines
458 B
#ifndef CHEVALIER_HPP
|
|
#define CHEVALIER_HPP
|
|
|
|
#include <string>
|
|
|
|
class Monstre;
|
|
|
|
class Chevalier {
|
|
public:
|
|
std::string titre;
|
|
int ptsDeVie;
|
|
int puissArme;
|
|
int puissBouclier;
|
|
|
|
Chevalier(std::string titre, int bouclier, int arme);
|
|
Chevalier(int bouclier, int arme);
|
|
void subirAttaque(int degats);
|
|
void parler(std::string message);
|
|
void subirEtContreAttaquer(Monstre *monstre);
|
|
~Chevalier();
|
|
};
|
|
|
|
#endif // CHEVALIER_HPP
|