aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/UiObject.h
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-19 15:16:16 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-19 15:16:16 +0100
commit6c2fc3716c9c6c68e982b243af5f7ed04fb35e86 (patch)
treec5a20a8a5352edc19cca1d6ddcbf7869db6e1055 /src/crepe/api/UiObject.h
parent60cbc3d649775053ac1d333716c9f5fda651a643 (diff)
button handling
Diffstat (limited to 'src/crepe/api/UiObject.h')
-rw-r--r--src/crepe/api/UiObject.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/crepe/api/UiObject.h b/src/crepe/api/UiObject.h
new file mode 100644
index 0000000..f57f7ef
--- /dev/null
+++ b/src/crepe/api/UiObject.h
@@ -0,0 +1,14 @@
+#include <functional>
+
+#include "Component.h"
+#include "api/EventHandler.h"
+namespace crepe {
+class UiObject : public Component{
+public:
+ ~UiObject(){};
+ int width = 0;
+ int height = 0;
+public:
+virtual int get_instances_max() const { return 1; }
+};
+}