diff options
Diffstat (limited to 'kue/table.h')
-rw-r--r-- | kue/table.h | 18 |
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 |