Files
cafeberry/Minecraft.Client/User.h
T
2026-07-03 18:34:01 +01:00

14 lines
246 B
C++

#pragma once
using namespace std;
class User
{
public:
static vector<Tile *> allowedTiles;
static void staticCtor();
wstring name;
wstring sessionId;
wstring mpPassword;
User(const wstring& name, const wstring& sessionId);
};