1#pragma once
2using namespace std;
3
4class User
5{
6public:
7 static vector<Tile *> allowedTiles;
8 static void staticCtor();
9 wstring name;
10 wstring sessionId;
11 wstring mpPassword;
12
13 User(const wstring& name, const wstring& sessionId);
14};