diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-19 09:17:46 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-19 09:17:46 +0100 |
commit | 226e01dcd77821d1fccdf42074606ce80528637e (patch) | |
tree | 7277669f47bc27d2017a808f3145e1ad24c5d365 /src/crepe/api/Button.cpp | |
parent | 01e77b907cb02ea8a161f620664feb3b16ccb697 (diff) | |
parent | 8eb67c614b70da6e6767ccf543d64000ea468f79 (diff) |
Merge branch 'loek/replay' into loek/scriptsloek/scripts
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 |