mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-03 15:39:46 +01: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:
parent
5fdbaa0076
commit
c5db440318
1 changed files with 6 additions and 0 deletions
|
@ -8,6 +8,12 @@
|
|||
#include "UtilityClass.h"
|
||||
#include "GraphicsUtil.h"
|
||||
|
||||
struct MenuOption
|
||||
{
|
||||
std::string text;
|
||||
bool active;
|
||||
};
|
||||
|
||||
|
||||
class Game
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue