aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Button.cpp
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-27 14:59:03 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-27 14:59:03 +0100
commit9d60b7b70abd832dc229c59114e465d457fcd0a3 (patch)
treee8f072ccb8e3a24a42295e53afac1892eda039ab /src/crepe/api/Button.cpp
parent6e9879896e620e6113c11e48f23a5f71b4fc87f0 (diff)
make format
Diffstat (limited to 'src/crepe/api/Button.cpp')
-rw-r--r--src/crepe/api/Button.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/crepe/api/Button.cpp b/src/crepe/api/Button.cpp
index 077a5e7..c0ff5a8 100644
--- a/src/crepe/api/Button.cpp
+++ b/src/crepe/api/Button.cpp
@@ -2,7 +2,12 @@
namespace crepe {
-Button::Button(game_object_id_t id, int width, int height, bool is_toggle, std::function<void()> on_click)
- : UiObject(id, width, height), is_toggle(is_toggle), is_pressed(false), hover(false), on_click(on_click) {}
+Button::Button(game_object_id_t id, int width, int height, bool is_toggle,
+ std::function<void()> on_click)
+ : UiObject(id, width, height),
+ is_toggle(is_toggle),
+ is_pressed(false),
+ hover(false),
+ on_click(on_click) {}
} // namespace crepe