diff options
Diffstat (limited to 'Minecraft.Client/PlayerInfo.h')
| -rw-r--r-- | Minecraft.Client/PlayerInfo.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Minecraft.Client/PlayerInfo.h b/Minecraft.Client/PlayerInfo.h new file mode 100644 index 00000000..427c78d8 --- /dev/null +++ b/Minecraft.Client/PlayerInfo.h @@ -0,0 +1,15 @@ +#pragma once +using namespace std; + +class PlayerInfo +{ +public: + wstring name; + int latency; + + PlayerInfo(const wstring &name) + { + this->name = name; + latency = 0; + } +};
\ No newline at end of file |
