Initial commit
This commit is contained in:
15
Minecraft.Client/PlayerInfo.h
Normal file
15
Minecraft.Client/PlayerInfo.h
Normal file
@@ -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;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user