aboutsummaryrefslogtreecommitdiff
path: root/game/menus/BannerSubScene.h
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2025-01-06 17:49:39 +0100
committerJAROWMR <jarorutjes07@gmail.com>2025-01-06 17:49:39 +0100
commit07615060da6c211e08a3d7f2e1bb9e99ffc05364 (patch)
treee272fd896ac25aa7ac6d7b4c20dbe5c49a042dce /game/menus/BannerSubScene.h
parentce655acf72c5d5be62497dbaac41af7ef49be411 (diff)
moved and updated files
Diffstat (limited to 'game/menus/BannerSubScene.h')
-rw-r--r--game/menus/BannerSubScene.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/game/menus/BannerSubScene.h b/game/menus/BannerSubScene.h
new file mode 100644
index 0000000..341943d
--- /dev/null
+++ b/game/menus/BannerSubScene.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#include "types.h"
+#include <crepe/api/GameObject.h>
+
+namespace crepe {
+class Scene;
+}
+
+class BannerSubScene {
+public:
+struct Data{
+ const std::string & banner_title = "NODATA";
+ const float banner_title_width = 100;
+ const crepe::vec2 & banner_title_offset = {0,0};
+ };
+public:
+ void create(crepe::Scene & scn,const Data & data);
+};