summaryrefslogtreecommitdiffstats
path: root/kue/cue.h
diff options
context:
space:
mode:
Diffstat (limited to 'kue/cue.h')
-rw-r--r--kue/cue.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/kue/cue.h b/kue/cue.h
new file mode 100644
index 00000000..d92bc7a2
--- /dev/null
+++ b/kue/cue.h
@@ -0,0 +1,13 @@
+#ifndef _CUE_H
+#define _CUE_H
+
+class TQColor;
+class KueTexture;
+
+// Draws a pool cue
+class cue {
+ public:
+ static void draw(double x, double y, double angle, KueTexture &texture, const TQColor &tip_color);
+};
+
+#endif