a (not so) mini update
This commit is contained in:
@@ -4,11 +4,11 @@
|
||||
|
||||
#include "../settings_menu.hpp"
|
||||
|
||||
#include "arcade/skill_check.hpp"
|
||||
#include "chat.hpp"
|
||||
#include "arcade.hpp"
|
||||
#include "cheats.hpp"
|
||||
#include "debug.hpp"
|
||||
#include "stats.hpp"
|
||||
#include "interact.hpp"
|
||||
#include "inventory.hpp"
|
||||
#include "text.hpp"
|
||||
|
||||
#include "../../util/imgui/window_slide.hpp"
|
||||
@@ -18,27 +18,24 @@ namespace game::state::play
|
||||
class Menu
|
||||
{
|
||||
public:
|
||||
SkillCheck skillCheck;
|
||||
Chat chat;
|
||||
Arcade arcade;
|
||||
Interact interact;
|
||||
Cheats cheats;
|
||||
Debug debug;
|
||||
Stats stats;
|
||||
Inventory inventory;
|
||||
|
||||
state::SettingsMenu settingsMenu;
|
||||
|
||||
#if DEBUG
|
||||
bool isCheats{true};
|
||||
#elif
|
||||
#else
|
||||
bool isCheats{};
|
||||
#endif
|
||||
|
||||
bool isOpen{true};
|
||||
bool isChat{true};
|
||||
util::imgui::WindowSlide slide{};
|
||||
|
||||
void tick();
|
||||
void update(Resources&, ItemManager&, entity::Character&, entity::Cursor&, Text&, Canvas&);
|
||||
void color_set_check(Resources&, entity::Character&);
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user