1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-01 18:43:33 +02:00

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
{