aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Button.h
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-04 21:50:00 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-04 21:50:00 +0100
commitd10f220ff6c5d62bb51793a0ef4ee37090161d89 (patch)
treeb709844a2fd689314d096cf0de72107a426c27f9 /src/crepe/api/Button.h
parentc1f30c168fc95818ea75660d90c395b0a548412e (diff)
feedback changes
Diffstat (limited to 'src/crepe/api/Button.h')
-rw-r--r--src/crepe/api/Button.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/api/Button.h b/src/crepe/api/Button.h
index 5c803ba..baee71f 100644
--- a/src/crepe/api/Button.h
+++ b/src/crepe/api/Button.h
@@ -2,7 +2,7 @@
#include <functional>
-#include "UiObject.h"
+#include "UIObject.h"
namespace crepe {
@@ -21,7 +21,7 @@ public:
* \param is_toggle Optional flag to indicate if the button is a toggle button. Defaults to false.
* \param on_click callback function that will be invoked when the button is clicked.
*/
- Button(game_object_id_t id, vec2 dimensions, vec2 offset, std::function<void()> on_click,
+ Button(game_object_id_t id, const vec2 & dimensions, const vec2 & offset, const std::function<void()>& on_click,
bool is_toggle = false);
/**