summaryrefslogtreecommitdiffstats
path: root/kue/pocket.h
diff options
context:
space:
mode:
Diffstat (limited to 'kue/pocket.h')
-rw-r--r--kue/pocket.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/kue/pocket.h b/kue/pocket.h
new file mode 100644
index 00000000..4e05ca6a
--- /dev/null
+++ b/kue/pocket.h
@@ -0,0 +1,10 @@
+#ifndef _POCKET_H
+#define _POCKET_H
+
+// Pockets are just circles with a set radius
+class KuePocket : public circle {
+ public:
+ KuePocket(double x, double y, double r) : circle(x, y, r) {}
+};
+
+#endif