aboutsummaryrefslogtreecommitdiff
path: root/game/menus/ButtonSubScene.h
diff options
context:
space:
mode:
authorMax-001 <80035972+Max-001@users.noreply.github.com>2025-01-10 14:13:46 +0100
committerGitHub <noreply@github.com>2025-01-10 14:13:46 +0100
commitbb2db93bfb8dd7e080d2708548eae660e6b33913 (patch)
tree32a54bc4469cb894aa009736e070bdc382e48e76 /game/menus/ButtonSubScene.h
parentd20b25828b53af170a6534263e8de114e7fac121 (diff)
parent8d46ad5a20d1aa5b784291ae323e38d1e0d59351 (diff)
Merge pull request #122 from lonkaars/jaro/game
Jaro/game
Diffstat (limited to 'game/menus/ButtonSubScene.h')
-rw-r--r--game/menus/ButtonSubScene.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/game/menus/ButtonSubScene.h b/game/menus/ButtonSubScene.h
index 74f9464..d4c7223 100644
--- a/game/menus/ButtonSubScene.h
+++ b/game/menus/ButtonSubScene.h
@@ -19,6 +19,11 @@ public:
REPLAY,
CREDITS_SHOW,
CREDITS_BACK,
+ PREVIEW_START,
+ PREVIEW_STOP,
+ PREVIEW_REPLAY,
+ SHOP_BULLET,
+ SHOP_BUBBLE,
NONE,
};
//icon enum
@@ -33,6 +38,14 @@ public:
NEXT,
LARGE,
};
+
+ enum class ButtonSideColor {
+ BLUE,
+ ORANGE,
+ PURPLE,
+ YELLOW,
+ NONE,
+ };
//data struct
struct Data {
const std::string & text = "NODATA";
@@ -48,6 +61,7 @@ public:
const bool color_side = true;
const std::string & tag = "";
const int sorting_layer_offset = 0;
+ const ButtonSideColor btn_side_color = ButtonSideColor::NONE;
};
public: