summaryrefslogtreecommitdiffstats
path: root/kue/rules.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kue/rules.cpp')
-rw-r--r--kue/rules.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/kue/rules.cpp b/kue/rules.cpp
new file mode 100644
index 00000000..4a15ac48
--- /dev/null
+++ b/kue/rules.cpp
@@ -0,0 +1,22 @@
+#include "rules.h"
+
+// Stub implementations
+// These functions exist purely to define an interface to inherit from
+
+void KueRulesEngine::billiardSunk(unsigned int ball, unsigned int pocket)
+{
+ Q_UNUSED(ball);
+ Q_UNUSED(pocket);
+}
+
+void KueRulesEngine::billiardHit(unsigned int ball1, unsigned int ball2)
+{
+ Q_UNUSED(ball1);
+ Q_UNUSED(ball2);
+}
+
+void KueRulesEngine::motionStopped()
+{
+}
+
+#include "rules.moc"