diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-17 09:29:47 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-17 09:29:47 +0100 |
commit | c4c896c2995f2b74fca322736aa944b28b14a1f6 (patch) | |
tree | a0c3e347bf3227140d67ace685ee18b5b64b4a75 /src/crepe/api/Button.h | |
parent | 093493d1ecc082672d80707c31bd95a5175ab2ce (diff) |
start
Diffstat (limited to 'src/crepe/api/Button.h')
-rw-r--r-- | src/crepe/api/Button.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/crepe/api/Button.h b/src/crepe/api/Button.h index 08f5dec..e97f884 100644 --- a/src/crepe/api/Button.h +++ b/src/crepe/api/Button.h @@ -3,9 +3,19 @@ #include <functional> #include "UIObject.h" - +#include "Event.h" +#include "Metadata.h" namespace crepe { +/** + * \brief Event triggered when a button is pressed + * + */ +class ButtonPressEvent : public Event{ + public: + + +} //! Represents a clickable UI button, derived from the UiObject class. class Button : public UIObject { public: |