This commit is contained in:
2024-01-24 10:45:25 +01:00
commit bcdbe48523
267 changed files with 39510 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
#pragma once
#include "html/html_window.hpp"
class launcher final
{
public:
enum class mode
{
none,
singleplayer,
multiplayer,
server,
};
launcher();
mode run() const;
private:
mode mode_ = mode::none;
html_window main_window_;
void select_mode(mode mode);
void create_main_menu();
static std::string load_content(int res);
};