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
+7 -5
View File
@@ -20,14 +20,16 @@
#ifndef LOCALTURN_H
#define LOCALTURN_H
#include "turninterface.h"
#include "handinterface.h"
#include <iostream>
class LocalHand;
class LocalTurn {
class LocalTurn : public TurnInterface{
public:
LocalTurn(LocalHand*, int, int, int, int);
LocalTurn(HandInterface*, int, int, int, int);
~LocalTurn();
@@ -51,7 +53,7 @@ public:
private:
LocalHand *myHand;
HandInterface *myHand;
int myID;
int actualQuantityPlayers;