diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-19 09:17:35 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-19 09:17:35 +0100 |
commit | 8eb67c614b70da6e6767ccf543d64000ea468f79 (patch) | |
tree | 19a9e4086686a64027be9c78878cc679d9ddcc25 /src/crepe/api/Button.cpp | |
parent | f6398e75ce5e416f7bd0856afcc7a7b72112fd75 (diff) | |
parent | d8f1e161b0c98baa7dde287c484529a8b1291626 (diff) |
merge master
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 305922c..40153c9 100644 --- a/src/crepe/api/Button.cpp +++ b/src/crepe/api/Button.cpp @@ -2,9 +2,7 @@ namespace crepe { -Button::Button(game_object_id_t id, const vec2 & dimensions, const vec2 & offset, - const std::function<void()> & on_click) - : UIObject(id, dimensions, offset), - on_click(on_click) {} +Button::Button(game_object_id_t id, const vec2 & dimensions, const vec2 & offset) + : UIObject(id, dimensions, offset) {} } // namespace crepe |