1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-17 01:58:29 +02:00

Add struct MenuOption

This fully represents an actual menu option object, instead of having
both attributes of a menu option go off and be in separate vectors.
This commit is contained in:
Misa 2020-04-14 21:11:10 -07:00 committed by Ethan Lee
parent 5fdbaa0076
commit c5db440318

View File

@ -8,6 +8,12 @@
#include "UtilityClass.h"
#include "GraphicsUtil.h"
struct MenuOption
{
std::string text;
bool active;
};
class Game
{