#include "../player.hpp"
|
|
|
|
class CLIPlayer : public Player {
|
|
|
|
public:
|
|
void thePreFlop(){
|
|
std:: cout << " Preflop" << std::endl;
|
|
}
|
|
|
|
}; |