diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-17 15:20:29 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-17 15:20:29 +0100 |
commit | ba99bcbac33d05bc2067c9211c0fe453b2930a8d (patch) | |
tree | a032c8268fece08866d7f398bf781fd356560579 /src/crepe/api/Button.cpp | |
parent | 45a1ab16f29e85de7c2df8832f51967c10c43e92 (diff) | |
parent | 9232a98b72eee7af4f7f2153c1b2ccedbfa4cc65 (diff) |
merge master
Diffstat (limited to 'src/crepe/api/Button.cpp')
-rw-r--r-- | src/crepe/api/Button.cpp | 3 |
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 |