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
+6 -4
View File
@@ -20,6 +20,8 @@
#ifndef LOCALPLAYER_H
#define LOCALPLAYER_H
#include "playerinterface.h"
#include "cardsvalue.h"
#include <string>
@@ -28,11 +30,11 @@
class CardsValue;
class LocalHand;
class LocalBoard;
class BoardInterface;
class LocalPlayer{
class LocalPlayer : public PlayerInterface{
public:
LocalPlayer(LocalBoard*, int, int, bool, int);
LocalPlayer(BoardInterface*, int, int, bool, int);
~LocalPlayer();
@@ -91,7 +93,7 @@ public:
private:
LocalHand *actualHand;
LocalBoard *actualBoard;
BoardInterface *actualBoard;
CardsValue *myCardsValue;