This commit is contained in:
@@ -21,6 +21,8 @@
|
|||||||
#define HANDINTERFACE_H
|
#define HANDINTERFACE_H
|
||||||
|
|
||||||
#include "guiinterface.h"
|
#include "guiinterface.h"
|
||||||
|
#include "boardinterface.h"
|
||||||
|
#include "playerinterface.h"
|
||||||
#include "preflopinterface.h"
|
#include "preflopinterface.h"
|
||||||
#include "flopinterface.h"
|
#include "flopinterface.h"
|
||||||
#include "turninterface.h"
|
#include "turninterface.h"
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ LocalBoard::~LocalBoard()
|
|||||||
|
|
||||||
void LocalBoard::setPlayer(PlayerInterface** p) { playerArray = p; }
|
void LocalBoard::setPlayer(PlayerInterface** p) { playerArray = p; }
|
||||||
|
|
||||||
void LocalBoard::setHand(LocalHand* br) { actualHand = br; }
|
void LocalBoard::setHand(HandInterface* br) { actualHand = br; }
|
||||||
|
|
||||||
void LocalBoard::collectSets() {
|
void LocalBoard::collectSets() {
|
||||||
|
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ LocalPlayer::~LocalPlayer()
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void LocalPlayer::setHand(LocalHand* br) { actualHand = br; }
|
void LocalPlayer::setHand(HandInterface* br) { actualHand = br; }
|
||||||
|
|
||||||
void LocalPlayer::action() {
|
void LocalPlayer::action() {
|
||||||
|
|
||||||
|
|||||||
@@ -20,6 +20,8 @@
|
|||||||
#ifndef PLAYERINTERFACE_H
|
#ifndef PLAYERINTERFACE_H
|
||||||
#define PLAYERINTERFACE_H
|
#define PLAYERINTERFACE_H
|
||||||
|
|
||||||
|
#include "handinterface.h"
|
||||||
|
|
||||||
class PlayerInterface{
|
class PlayerInterface{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user