summaryrefslogtreecommitdiffstats
path: root/include/graphics/Widget.hpp
blob: c4d5dc1eac34da15803f60e71669f36d42450e30 (plain) (blame)
1
2
3
4
5
6
7
8
#pragma once

class Widget {
    unsigned int x,y,w,h;
public:
    Widget(Widget *parent);
    ~Widget();
};