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