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.
19 lines
357 B
19 lines
357 B
#ifndef CHEVALIER_HPP
|
|
#define CHEVALIER_HPP
|
|
|
|
#include <string>
|
|
|
|
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 parler(std::string message);
|
|
~Chevalier();
|
|
};
|
|
|
|
#endif // CHEVALIER_HPP
|