The Snivy Video Game Is Complete

This commit is contained in:
2025-12-29 05:10:56 -05:00
parent d0f9669b8b
commit 62b988a678
705 changed files with 210576 additions and 162 deletions

24
src/window/main_menu.h 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);
};
}