mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-28 11:43:38 +00:00
18 lines
327 B
C++
18 lines
327 B
C++
#pragma once
|
|
|
|
#include <format>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class Tile;
|
|
|
|
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);
|
|
}; |