This commit is contained in:
doitux
2007-01-13 22:29:17 +00:00
parent ccd74ccb92
commit 507ffdd2a8
21 changed files with 176 additions and 85 deletions
+2 -2
View File
@@ -23,7 +23,7 @@
using namespace std;
LocalBoard::LocalBoard() : playerArray(0), actualHand(0), pot(0), sets(0)
LocalBoard::LocalBoard() : BoardInterface(), playerArray(0), actualHand(0), pot(0), sets(0)
{
}
@@ -32,7 +32,7 @@ LocalBoard::~LocalBoard()
{
}
void LocalBoard::setPlayer(LocalPlayer** p) { playerArray = p; }
void LocalBoard::setPlayer(PlayerInterface** p) { playerArray = p; }
void LocalBoard::setHand(LocalHand* br) { actualHand = br; }