mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 10:03:38 +00:00
12 lines
179 B
C++
12 lines
179 B
C++
#pragma once
|
|
|
|
class PlayerInfo {
|
|
public:
|
|
std::string name;
|
|
int latency;
|
|
|
|
PlayerInfo(const std::string& name) {
|
|
this->name = name;
|
|
latency = 0;
|
|
}
|
|
}; |