Add vector of MenuStackFrame menustack to Game

We need a stack to put our stack frames inside.
This commit is contained in:
Misa
2020-04-16 18:52:40 -07:00
committed by Ethan Lee
parent 13d2d6b623
commit 58b9941d73

View File

@@ -229,6 +229,7 @@ public:
enum Menu::MenuName currentmenuname, previousmenuname; enum Menu::MenuName currentmenuname, previousmenuname;
int current_credits_list_index; int current_credits_list_index;
int menuxoff, menuyoff; int menuxoff, menuyoff;
std::vector<MenuStackFrame> menustack;
void inline option(std::string text, bool active = true) void inline option(std::string text, bool active = true)
{ {