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