From 07615060da6c211e08a3d7f2e1bb9e99ffc05364 Mon Sep 17 00:00:00 2001 From: JAROWMR Date: Mon, 6 Jan 2025 17:49:39 +0100 Subject: moved and updated files --- game/menus/ButtonSetShopScript.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 game/menus/ButtonSetShopScript.h (limited to 'game/menus/ButtonSetShopScript.h') diff --git a/game/menus/ButtonSetShopScript.h b/game/menus/ButtonSetShopScript.h new file mode 100644 index 0000000..51db928 --- /dev/null +++ b/game/menus/ButtonSetShopScript.h @@ -0,0 +1,14 @@ +#pragma once + +#include "IButtonScript.h" +#include + +class ButtonSetShopScript : public IButtonScript { +public: + void init() override; + bool on_button_press(const crepe::ButtonPressEvent& e); +private: + float velocity = 20; +protected: + bool transition = false; +}; -- cgit v1.2.3