This commit is contained in:
doitux
2007-01-14 12:15:45 +00:00
parent 31c4c0dde9
commit 514eb3c958
21 changed files with 141 additions and 81 deletions
+3 -3
View File
@@ -29,7 +29,7 @@
class CardsValue;
class LocalHand;
class HandInterface;
class BoardInterface;
class LocalPlayer : public PlayerInterface{
@@ -38,7 +38,7 @@ public:
~LocalPlayer();
void setHand(LocalHand*);
void setHand(HandInterface*);
void setMyID(const int& theValue) { myID = theValue; }
int getMyID() const { return myID; }
@@ -92,7 +92,7 @@ public:
private:
LocalHand *actualHand;
HandInterface *actualHand;
BoardInterface *actualBoard;
CardsValue *myCardsValue;