[go: up one dir, main page]

Menu

[r66]: / trunk / jeu.h  Maximize  Restore  History

Download this file

28 lines (20 with data), 397 Bytes

 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