Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'Controller.py')
-rw-r--r--Controller.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/Controller.py b/Controller.py
new file mode 100644
index 0000000..06bab5a
--- /dev/null
+++ b/Controller.py
@@ -0,0 +1,24 @@
+# -*- coding: utf-8 -*-
+import View
+class Controller():
+ def __init__(self,activity):
+ self.activity=activity
+ view=View(self)
+
+ def evaluateAnswer(answer):
+ pass
+
+ def nextPuzzle():
+ pass
+
+ def newGame(difficulty,topic):
+ pass
+
+ def end():
+ pass
+
+ def pause():
+ pass
+
+ def getClue():
+ pass \ No newline at end of file