aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Button.cpp
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-12 07:57:24 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-12 07:57:24 +0100
commit73f8d5c558ebc0820ede241e64a876ff1c5ccefb (patch)
treeb3058fc92101a25245e554091e7a6b406372a988 /src/crepe/api/Button.cpp
parent7029aa426ad91b49459b47043b0d4329e4b0eaee (diff)
seperat ints converted to float
Diffstat (limited to 'src/crepe/api/Button.cpp')
-rw-r--r--src/crepe/api/Button.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/crepe/api/Button.cpp b/src/crepe/api/Button.cpp
index 76f74f0..305922c 100644
--- a/src/crepe/api/Button.cpp
+++ b/src/crepe/api/Button.cpp
@@ -3,9 +3,8 @@
namespace crepe {
Button::Button(game_object_id_t id, const vec2 & dimensions, const vec2 & offset,
- const std::function<void()> & on_click, bool is_toggle)
+ const std::function<void()> & on_click)
: UIObject(id, dimensions, offset),
- is_toggle(is_toggle),
on_click(on_click) {}
} // namespace crepe