Files
pokerth/src/engine/network_engine/clientbero.h
T

36 lines
495 B
C++
Raw Normal View History

//
// C++ Interface: clientbero
//
// Description:
//
//
// Author: FThauer FHammer <webmaster@pokerth.net>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef CLIENTBERO_H
#define CLIENTBERO_H
2007-08-04 11:37:26 +00:00
#include "berointerface.h"
/**
@author FThauer FHammer <webmaster@pokerth.net>
*/
2007-08-04 11:37:26 +00:00
class ClientBeRo : public BeRoInterface{
public:
ClientBeRo();
~ClientBeRo();
2007-08-05 13:07:23 +00:00
int getMyBeRoID() const { return myBeRoID; }
protected:
int myBeRoID;
};
#endif