mc-lce/Minecraft.Client/PlayerInfo.h
2026-03-01 02:38:58 +02:00

15 lines
169 B
C++

#pragma once
using namespace std;
class PlayerInfo
{
public:
wstring name;
int latency;
PlayerInfo(const wstring &name)
{
this->name = name;
latency = 0;
}
};