Files
2026-03-08 10:09:54 +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);
};