diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-28 09:01:37 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-28 09:01:37 +0100 |
commit | 570acb7e9258edcd6a06fff4dd2ce0ff12a3e873 (patch) | |
tree | 0b9d8406f6d6a8e2dcd187bee7277bc81a270acc /src/crepe/api/Button.cpp | |
parent | 8635d1ace31232c295c6cb85ea215887c6fb1319 (diff) |
added on_enter and on_hover
Diffstat (limited to 'src/crepe/api/Button.cpp')
-rw-r--r-- | src/crepe/api/Button.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/crepe/api/Button.cpp b/src/crepe/api/Button.cpp index c0ff5a8..a27ff53 100644 --- a/src/crepe/api/Button.cpp +++ b/src/crepe/api/Button.cpp @@ -2,12 +2,10 @@ namespace crepe { -Button::Button(game_object_id_t id, int width, int height, bool is_toggle, - std::function<void()> on_click) +Button::Button(game_object_id_t id, int width, int height, std::function<void()> on_click, bool is_toggle + ) : UiObject(id, width, height), is_toggle(is_toggle), - is_pressed(false), - hover(false), on_click(on_click) {} } // namespace crepe |