Add struct MenuStackFrame

This will be pushed onto a stack when going to a different menu so the
game can dynamically keep track of which menu option got you to which
menu.
This commit is contained in:
Misa
2020-04-16 16:22:40 -07:00
committed by Ethan Lee
parent 503b3f1692
commit 13d2d6b623

View File

@@ -70,6 +70,12 @@ namespace Menu
};
};
struct MenuStackFrame
{
int option;
enum Menu::MenuName name;
};
class Game
{