From c5db44031821ea4d3b907f440266d70d505bae55 Mon Sep 17 00:00:00 2001 From: Misa Date: Tue, 14 Apr 2020 21:11:10 -0700 Subject: [PATCH] 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. --- desktop_version/src/Game.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/desktop_version/src/Game.h b/desktop_version/src/Game.h index f1a50db3..dc390a38 100644 --- a/desktop_version/src/Game.h +++ b/desktop_version/src/Game.h @@ -8,6 +8,12 @@ #include "UtilityClass.h" #include "GraphicsUtil.h" +struct MenuOption +{ + std::string text; + bool active; +}; + class Game {