iw4x-client/src/Components/Modules/ServerInfo.hpp

34 lines
563 B
C++
Raw Normal View History

2016-01-07 20:20:55 -05:00
namespace Components
{
class ServerInfo : public Component
{
public:
ServerInfo();
~ServerInfo();
const char* GetName() { return "ServerInfo"; };
private:
struct Container
{
struct Player
{
int Ping;
int Score;
std::string Name;
};
int CurrentPlayer;
std::vector<Player> PlayerList;
Network::Address Target;
};
static Container PlayerContainer;
static void ServerStatus();
static int GetPlayerCount();
static const char* GetPlayerText(int index, int column);
static void SelectPlayer(int index);
};
}