diff options
Diffstat (limited to 'includes/interface/Panel.h')
| -rw-r--r-- | includes/interface/Panel.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/includes/interface/Panel.h b/includes/interface/Panel.h new file mode 100644 index 0000000..9549ff4 --- /dev/null +++ b/includes/interface/Panel.h @@ -0,0 +1,22 @@ +/* + * Panel.h + * + * Created on: Jan 8, 2012 + * Author: Simon + */ + +#ifndef PANEL_H_ +#define PANEL_H_ + +#include "interface/Component.h" + +namespace ui { + +class Panel: public ui::Component { +public: + Panel(int x, int y, int width, int height); + virtual ~Panel(); +}; + +} /* namespace ui */ +#endif /* PANEL_H_ */ |
