buggy!!!
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
|
||||
using namespace std;
|
||||
|
||||
ClientHand::ClientHand(boost::shared_ptr<EngineFactory> f, GuiInterface *g, BoardInterface *b, PlayerInterface **p, int id, int sP, int aP, int dP, int sB,int sC)
|
||||
ClientHand::ClientHand(boost::shared_ptr<EngineFactory> f, GuiInterface *g, BoardInterface *b, std::vector<boost::shared_ptr<PlayerInterface> > p, int id, int sP, int aP, int dP, int sB,int sC)
|
||||
: myFactory(f), myGui(g), myBoard(b), playerArray(p), myID(id), actualQuantityPlayers(aP), startQuantityPlayers(sP), dealerPosition(dP), actualRound(0),
|
||||
smallBlind(sB), startCash(sC), activePlayersCounter(aP), lastPlayersTurn(0), allInCondition(0),
|
||||
cardsShown(false), bettingRoundsPlayed(0)
|
||||
@@ -68,7 +68,7 @@ ClientHand::start()
|
||||
{
|
||||
}
|
||||
|
||||
PlayerInterface**
|
||||
std::vector<boost::shared_ptr<PlayerInterface> >
|
||||
ClientHand::getPlayerArray() const
|
||||
{
|
||||
return playerArray;
|
||||
|
||||
Reference in New Issue
Block a user