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