diff options
Diffstat (limited to 'Minecraft.Client/User.h')
| -rw-r--r-- | Minecraft.Client/User.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Minecraft.Client/User.h b/Minecraft.Client/User.h new file mode 100644 index 00000000..b888c7d4 --- /dev/null +++ b/Minecraft.Client/User.h @@ -0,0 +1,14 @@ +#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); +};
\ No newline at end of file |
