The Snivy Video Game Is Complete
This commit is contained in:
24
src/window/main_menu.h
Normal file
24
src/window/main_menu.h
Normal 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);
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user