Implement the core of the login system

This commit is contained in:
2021-03-30 18:35:08 -04:00
parent 795a45c950
commit aa7de03c57
4 changed files with 113 additions and 32 deletions

View File

@@ -13,6 +13,7 @@ private:
LuaConsole console_;
Gui gui_;
int64_t gui_place_;
int64_t actor_id_;
void do_view_command(const StringVec &cmd);
void do_menu_command(const StringVec &cmd);
@@ -23,6 +24,8 @@ private:
void do_lua(const std::string &exp);
void do_command(const StringVec &exp);
void check_redirects();
public:
void run();
};