aboutsummaryrefslogtreecommitdiff
path: root/game/menus/shop/Shopconfig.h
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2025-01-09 21:14:35 +0100
committerJAROWMR <jarorutjes07@gmail.com>2025-01-09 21:14:35 +0100
commitf6683fa71fa670cfbe6aa6233fafb869295da11a (patch)
treea46ee1d8856b5f0e0298abbab9c92ba21509d830 /game/menus/shop/Shopconfig.h
parent296c7b8becc04fa0eeef7c732e5c62a26de45570 (diff)
added shop functionality
Diffstat (limited to 'game/menus/shop/Shopconfig.h')
-rw-r--r--game/menus/shop/Shopconfig.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/game/menus/shop/Shopconfig.h b/game/menus/shop/Shopconfig.h
new file mode 100644
index 0000000..04c8c5c
--- /dev/null
+++ b/game/menus/shop/Shopconfig.h
@@ -0,0 +1,16 @@
+#pragma once
+#include "api/Event.h"
+
+//tags
+static constexpr const char * BUY_BULLET = "BUY_BULLET";
+static constexpr const char * SELECT_BULLET = "SELECT_BULLET";
+static constexpr const char * BUY_BUBBLE = "BUY_BUBBLE";
+static constexpr const char * SELECT_BUBBLE = "SELECT_BUBBLE";
+
+
+//save_data
+static constexpr const char * BUY_BULLET_SAVE = "BUY_BULLET_SAVE";
+static constexpr const char * BUY_BUBBLE_SAVE = "BUY_BUBBLE_SAVE";
+
+
+struct ShopUpdate : public crepe::Event {};