2017-01-20 08:36:52 -05:00
|
|
|
#pragma once
|
|
|
|
|
2017-01-19 16:23:59 -05:00
|
|
|
namespace Components
|
|
|
|
{
|
|
|
|
class PlayerName : public Component
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PlayerName();
|
|
|
|
~PlayerName();
|
|
|
|
|
|
|
|
private:
|
|
|
|
static std::string PlayerNames[18];
|
|
|
|
|
|
|
|
static int GetClientName(int localClientNum, int index, char *buf, int size);
|
|
|
|
};
|
|
|
|
}
|