summaryrefslogtreecommitdiff
path: root/includes/interface/Panel.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-01-08 17:39:03 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-01-08 17:39:03 (GMT)
commitb0ea52690ba56a0d0602ad8674b7e5ab2ba3e778 (patch)
tree7d72e0509f4d2643d3be837a337d088ca5949c73 /includes/interface/Panel.h
downloadpowder-b0ea52690ba56a0d0602ad8674b7e5ab2ba3e778.zip
powder-b0ea52690ba56a0d0602ad8674b7e5ab2ba3e778.tar.gz
Initial
Diffstat (limited to 'includes/interface/Panel.h')
-rw-r--r--includes/interface/Panel.h22
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_ */