mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 13:13:38 +00:00
14 lines
243 B
C++
14 lines
243 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);
|
|
}; |