summaryrefslogtreecommitdiffstats
path: root/kue/sphere.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/sphere.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/sphere.h')
-rw-r--r--kue/sphere.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/kue/sphere.h b/kue/sphere.h
new file mode 100644
index 00000000..f106142e
--- /dev/null
+++ b/kue/sphere.h
@@ -0,0 +1,11 @@
+#ifndef _SPHERE_H
+#define _SPHERE_H
+
+
+// Draws a sphere
+class sphere {
+ public:
+ static void draw(double x, double y, double radius, double rot_x, double rot_y);
+};
+
+#endif