Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
#ifndef JEU_H #define JEU_H #include "carte.h" #include <vector> using namespace std; class Carte; class Jeu { public: Jeu(); void Vide(); void AjoutCarte(Carte nouvcarte); Carte EnleveCarte(int); Carte GetCarte(int positioncarte) const; inline int GetTaille() const {return MesCartes.size();} void Liste(); private: vector<Carte> MesCartes; }; #endif