diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2025-01-09 21:14:35 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2025-01-09 21:14:35 +0100 |
commit | f6683fa71fa670cfbe6aa6233fafb869295da11a (patch) | |
tree | a46ee1d8856b5f0e0298abbab9c92ba21509d830 /game/menus/shop/ButtonBuySelectBubbleScript.h | |
parent | 296c7b8becc04fa0eeef7c732e5c62a26de45570 (diff) |
added shop functionality
Diffstat (limited to 'game/menus/shop/ButtonBuySelectBubbleScript.h')
-rw-r--r-- | game/menus/shop/ButtonBuySelectBubbleScript.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/game/menus/shop/ButtonBuySelectBubbleScript.h b/game/menus/shop/ButtonBuySelectBubbleScript.h new file mode 100644 index 0000000..ce276ef --- /dev/null +++ b/game/menus/shop/ButtonBuySelectBubbleScript.h @@ -0,0 +1,14 @@ +#pragma once + +#include "../IButtonScript.h" + +#include <crepe/api/Script.h> + +class ButtonBuySelectBubbleScript : public IButtonScript { +public: + void init() override; + bool on_button_press(const crepe::ButtonPressEvent & e); + +protected: + bool transition = false; +}; |