Files
2026-03-01 12:16:08 +08:00

14 lines
233 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);
};