mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 09:23:37 +00:00
12 lines
259 B
C++
12 lines
259 B
C++
#pragma once
|
|
|
|
class User {
|
|
public:
|
|
static std::vector<Tile*> allowedTiles;
|
|
static void staticCtor();
|
|
std::wstring name;
|
|
std::wstring sessionId;
|
|
std::wstring mpPassword;
|
|
|
|
User(const std::wstring& name, const std::wstring& sessionId);
|
|
}; |