Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/game/start.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/start.py')
-rw-r--r--src/game/start.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/game/start.py b/src/game/start.py
new file mode 100644
index 0000000..7b0b3f2
--- /dev/null
+++ b/src/game/start.py
@@ -0,0 +1,25 @@
+'''
+
+'''
+
+import curses
+import config
+from utils import strs
+
+# setup logging
+import logging
+logging.basicConfig(filename=strs.LoggingFile,level=logging.DEBUG)
+log = logging.getLogger('game.start')
+
+
+
+
+def startGame(data):
+ '''Called to start the level. The given data is the same data structure used by the menu system'''
+ #TODO Load the level scripts
+ #TODO Start the server
+ #TODO Start the client
+ #TODO Connect the client to the server
+ print('Wasn\'t that fun?') #TODO remove this line
+ pass
+