lastMoneyWon

This commit is contained in:
floty
2007-10-29 22:26:50 +00:00
parent 70e2d5556f
commit 1a5a5600ce
6 changed files with 32 additions and 4 deletions
@@ -306,6 +306,18 @@ ClientPlayer::getMyRoundStartCash() const
return myRoundStartCash;
}
void
ClientPlayer::setLastMoneyWon ( int theValue )
{
lastMoneyWon = theValue;
}
int
ClientPlayer::getLastMoneyWon() const
{
return lastMoneyWon;
}
void
ClientPlayer::setMyAverageSets(int theValue)
{
+4
View File
@@ -89,6 +89,9 @@ public:
void setMyRoundStartCash(int theValue);
int getMyRoundStartCash() const;
void setLastMoneyWon ( int theValue );
int getLastMoneyWon() const;
void setMyAverageSets(int theValue);
int getMyAverageSets() const;
@@ -163,6 +166,7 @@ private:
bool myTurn; // 0 = no, 1 = yes
bool myCardsFlip; // 0 = cards are not fliped, 1 = cards are already flipped,
int myRoundStartCash;
int lastMoneyWon;
int myAverageSets[4];
bool myAggressive[7];