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

35 lines
488 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; }
protected:
int myBeRoID;
};
#endif