mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-11 03:28:59 +02:00
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);
|
|
}; |