diff options
Diffstat (limited to 'src/crepe/api/Button.cpp')
-rw-r--r-- | src/crepe/api/Button.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/crepe/api/Button.cpp b/src/crepe/api/Button.cpp new file mode 100644 index 0000000..c0ff5a8 --- /dev/null +++ b/src/crepe/api/Button.cpp @@ -0,0 +1,13 @@ +#include "Button.h" + +namespace crepe { + +Button::Button(game_object_id_t id, int width, int height, bool is_toggle, + std::function<void()> on_click) + : UiObject(id, width, height), + is_toggle(is_toggle), + is_pressed(false), + hover(false), + on_click(on_click) {} + +} // namespace crepe |