more polymorphie steps for BeRo - local game --> unstable

This commit is contained in:
doitux
2007-08-04 21:30:20 +00:00
parent 1f00b3f458
commit 07f8a2aaeb
19 changed files with 87 additions and 45 deletions
+13 -2
View File
@@ -17,9 +17,20 @@
*/
class BeRoInterface{
public:
BeRoInterface();
~BeRoInterface();
virtual ~BeRoInterface();
virtual void setPlayersTurn(int) =0;
virtual int getPlayersTurn() const =0;
virtual void setHighestSet(int) =0;
virtual int getHighestSet() const =0;
virtual void setPreflopFirstRound(bool) =0;
virtual bool setPreflopFirstRound() const =0;
virtual void preflopRun() =0;
virtual void nextPlayer2() =0;
};