aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Button.cpp
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-28 09:02:02 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-28 09:02:02 +0100
commit34218886689a57004576486976038027732d8bcc (patch)
tree28eb5b594920fbb3c668564e01818bfa50b6fc56 /src/crepe/api/Button.cpp
parent570acb7e9258edcd6a06fff4dd2ce0ff12a3e873 (diff)
make format
Diffstat (limited to 'src/crepe/api/Button.cpp')
-rw-r--r--src/crepe/api/Button.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/api/Button.cpp b/src/crepe/api/Button.cpp
index a27ff53..d325014 100644
--- a/src/crepe/api/Button.cpp
+++ b/src/crepe/api/Button.cpp
@@ -2,8 +2,8 @@
namespace crepe {
-Button::Button(game_object_id_t id, int width, int height, std::function<void()> on_click, bool is_toggle
- )
+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),
on_click(on_click) {}