diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-12-28 12:15:39 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-12-28 12:15:39 +0100 |
commit | deb1cd4732fb3a880cd10ce677e62fc2aac974a0 (patch) | |
tree | 28f02f1f4d88687688e9670c85f409c90bfc041d /game/mainmenu/SetShopScript.h | |
parent | f91eff6285f651f5c3e310927026f419e67657ab (diff) |
interface scripts added
Diffstat (limited to 'game/mainmenu/SetShopScript.h')
-rw-r--r-- | game/mainmenu/SetShopScript.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/game/mainmenu/SetShopScript.h b/game/mainmenu/SetShopScript.h new file mode 100644 index 0000000..0705e57 --- /dev/null +++ b/game/mainmenu/SetShopScript.h @@ -0,0 +1,14 @@ +#pragma once + +#include "IButtonScript.h" +#include <crepe/api/Script.h> + +class SetShopScript : public IButtonScript { +public: + void init() override; + bool on_button_press(const crepe::ButtonPressEvent& e); +private: + float velocity = 20; +protected: + bool transition = false; +}; |