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
+4 -4
View File
@@ -33,10 +33,10 @@ public:
HandInterface* createHand(GuiInterface *g, BoardInterface *b, PlayerInterface **p, int id, int qP, int dP, int sB,int sC);
BoardInterface* createBoard();
PlayerInterface* createPlayer(BoardInterface *b, int id, int sC, bool aS, int mB);
PreflopInterface* createPreflop();
FlopInterface* createFlop();
TurnInterface* createTurn();
RiverInterface* createRiver();
PreflopInterface* createPreflop(HandInterface* hi, int id, int qP, int dP, int sB);
FlopInterface* createFlop(HandInterface* hi, int id, int qP, int dP, int sB);
TurnInterface* createTurn(HandInterface* hi, int id, int qP, int dP, int sB);
RiverInterface* createRiver(HandInterface* hi, int id, int qP, int dP, int sB);
};
#endif