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.
|
#ifndef DE_HPP
|
|
#define DE_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace jeu {
|
|
|
|
class De {
|
|
private:
|
|
int nbFaces;
|
|
int valeur;
|
|
public:
|
|
De(int nbFaces);
|
|
De();
|
|
int getValeur();
|
|
int lancer();
|
|
void effacer();
|
|
};
|
|
|
|
} //namespace jeu
|
|
|
|
|
|
#endif // DE_HPP
|