Files
pokerth/src/engine/local_engine/localbero.h
T

47 lines
740 B
C++
Raw Normal View History

//
// C++ Interface: localbero
//
// Description:
//
//
// Author: FThauer FHammer <webmaster@pokerth.net>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef LOCALBERO_H
#define LOCALBERO_H
#include "berointerface.h"
/**
@author FThauer FHammer <webmaster@pokerth.net>
*/
class LocalBeRo : public BeRoInterface{
public:
LocalBeRo();
~LocalBeRo();
2007-08-05 13:07:23 +00:00
int getMyBeRoID() const { return myBeRoID; }
2007-08-06 09:50:54 +00:00
int getHighestCardsValue() const {}
void setHighestCardsValue(int theValue) {}
2007-08-05 13:07:23 +00:00
//only until bero refactory is over
void preflopRun() {}
void flopRun() {}
void riverRun() {}
void turnRun() {}
void postRiverRun() {}
void resetFirstRun() {}
2007-08-05 13:07:23 +00:00
protected:
int myBeRoID;
};
#endif