mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 15:13:36 +00:00
15 lines
159 B
C++
15 lines
159 B
C++
#pragma once
|
|
|
|
|
|
class PlayerInfo
|
|
{
|
|
public:
|
|
std::wstring name;
|
|
int latency;
|
|
|
|
PlayerInfo(const std::wstring &name)
|
|
{
|
|
this->name = name;
|
|
latency = 0;
|
|
}
|
|
}; |