summaryrefslogtreecommitdiffstats
path: root/kue/table.h
diff options
context:
space:
mode:
Diffstat (limited to 'kue/table.h')
-rw-r--r--kue/table.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/kue/table.h b/kue/table.h
new file mode 100644
index 00000000..4604f72c
--- /dev/null
+++ b/kue/table.h
@@ -0,0 +1,18 @@
+#ifndef _TABLE_H
+#define _TABLE_H
+
+#include "texture.h"
+
+// Draws a table
+class table {
+ public:
+ table();
+ ~table();
+
+ void draw(double width, double height);
+
+ private:
+ KueTexture _texture;
+};
+
+#endif