This commit is contained in:
doitux
2007-01-14 12:40:30 +00:00
parent 514eb3c958
commit c198ff21a9
4 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ LocalBoard::~LocalBoard()
void LocalBoard::setPlayer(PlayerInterface** p) { playerArray = p; }
void LocalBoard::setHand(LocalHand* br) { actualHand = br; }
void LocalBoard::setHand(HandInterface* br) { actualHand = br; }
void LocalBoard::collectSets() {
+1 -1
View File
@@ -44,7 +44,7 @@ LocalPlayer::~LocalPlayer()
{
}
void LocalPlayer::setHand(LocalHand* br) { actualHand = br; }
void LocalPlayer::setHand(HandInterface* br) { actualHand = br; }
void LocalPlayer::action() {