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