run() -> postRiverRun() in localberopostriver.cpp
This commit is contained in:
@@ -42,6 +42,8 @@ public:
|
||||
virtual void nextPlayer() =0;
|
||||
virtual void run() =0;
|
||||
|
||||
virtual void postRiverRun() =0;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -36,6 +36,8 @@ public:
|
||||
void nextPlayer();
|
||||
void run();
|
||||
|
||||
void postRiverRun() {};
|
||||
|
||||
protected:
|
||||
|
||||
HandInterface* getMyHand() const { return myHand; }
|
||||
|
||||
@@ -34,7 +34,7 @@ LocalBeRoPostRiver::~LocalBeRoPostRiver()
|
||||
}
|
||||
|
||||
|
||||
void LocalBeRoPostRiver::run() {
|
||||
void LocalBeRoPostRiver::postRiverRun() {
|
||||
|
||||
int i;
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ public:
|
||||
void setHighestCardsValue(int theValue) { highestCardsValue = theValue;}
|
||||
int getHighestCardsValue() const { return highestCardsValue;}
|
||||
|
||||
void run();
|
||||
void postRiverRun();
|
||||
void distributePot();
|
||||
|
||||
private:
|
||||
|
||||
@@ -138,3 +138,8 @@ ClientBeRo::run()
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
ClientBeRo::postRiverRun()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -53,6 +53,8 @@ public:
|
||||
void nextPlayer();
|
||||
void run();
|
||||
|
||||
void postRiverRun();
|
||||
|
||||
private:
|
||||
|
||||
const GameState myBeRoID;
|
||||
|
||||
Reference in New Issue
Block a user