Just so I don't lose current progress on 2.0...
Some checks failed
Build / Build Game (push) Has been cancelled

This commit is contained in:
2026-01-10 03:07:06 -05:00
parent 1f1ac0db4d
commit 8b2edd1359
31 changed files with 4 additions and 0 deletions

24
src/window/main_menu.hpp Normal file
View File

@@ -0,0 +1,24 @@
#pragma once
#include <imgui.h>
#include "chat.h"
#include "play.h"
#include "stats.h"
#include "text.h"
namespace game::window
{
class MainMenu
{
public:
Play play;
Chat chat;
Stats stats;
Inventory inventory;
bool isCheats{};
void update(Resources&, Character&, GameData&, Text& text, ImVec2 size, ImVec2 pos);
};
}