summaryrefslogtreecommitdiffstats
path: root/src/gui/Widget.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/Widget.hpp')
-rw-r--r--src/gui/Widget.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/Widget.hpp b/src/gui/Widget.hpp
new file mode 100644
index 0000000..c4d5dc1
--- /dev/null
+++ b/src/gui/Widget.hpp
@@ -0,0 +1,8 @@
+#pragma once
+
+class Widget {
+ unsigned int x,y,w,h;
+public:
+ Widget(Widget *parent);
+ ~Widget();
+};