refactoring, new game(s) in progress

This commit is contained in:
2026-04-09 12:47:09 -04:00
parent f7b00847ee
commit a529d5cdce
57 changed files with 2743 additions and 759 deletions

View File

@@ -4,12 +4,13 @@
#include "../settings_menu.hpp"
#include "arcade.hpp"
#include "menu/arcade.hpp"
#include "cheats.hpp"
#include "debug.hpp"
#include "interact.hpp"
#include "inventory.hpp"
#include "menu/interact.hpp"
#include "menu/inventory.hpp"
#include "text.hpp"
#include "menu/toasts.hpp"
#include "../../util/imgui/window_slide.hpp"
@@ -18,11 +19,12 @@ namespace game::state::play
class Menu
{
public:
Arcade arcade;
Interact interact;
menu::Arcade arcade;
menu::Interact interact;
Cheats cheats;
Debug debug;
Inventory inventory;
menu::Inventory inventory;
menu::Toasts toasts;
state::SettingsMenu settingsMenu;