summaryrefslogtreecommitdiffstats
path: root/kue/table.h
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2024-08-07 19:13:02 +0300
committerMavridis Philippe <mavridisf@gmail.com>2024-08-07 19:23:24 +0300
commit04b5a62b8d9f5ff8240f25361046f2a5d58e8262 (patch)
tree98b126454cdf68d544e138d7e8b31d5fd45b72c2 /kue/table.h
parent83ba00b7e569587d50383ff06a70148042ca780e (diff)
downloadtdegames-04b5a62b8d9f5ff8240f25361046f2a5d58e8262.tar.gz
tdegames-04b5a62b8d9f5ff8240f25361046f2a5d58e8262.zip
Add Kue billiards gamefeat/kue
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
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