This commit is contained in:
doitux
2007-02-04 13:46:27 +00:00
parent ff6c1e5cbd
commit a7fa1b03e7
11 changed files with 87 additions and 28 deletions
+6 -2
View File
@@ -35,7 +35,7 @@ class ConfigFile;
class Game {
public:
Game(ConfigFile*, GuiInterface*, int, int, int);
Game(ConfigFile*, GuiInterface*, int, int, int, int);
~Game();
@@ -52,6 +52,10 @@ public:
void setDealerPosition(const int& theValue) { dealerPosition = theValue; }
int getDealerPosition() const { return dealerPosition; }
void setMyGameID(const int& theValue) { myGameID = theValue;}
int getMyGameID() const { return myGameID; }
//Zufgriff Laufvariablen
void setActualQuantityPlayers(const int& theValue) { actualQuantityPlayers = theValue; }
@@ -83,11 +87,11 @@ private:
BoardInterface *actualBoard;
PlayerInterface *playerArray[5];
//Startvariablen
int startQuantityPlayers;
int startCash;
int startSmallBlind;
int myGameID;
//Laufvariablen
int actualQuantityPlayers;