Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/start.py
diff options
context:
space:
mode:
Diffstat (limited to 'start.py')
-rw-r--r--start.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/start.py b/start.py
new file mode 100644
index 0000000..dfd9cac
--- /dev/null
+++ b/start.py
@@ -0,0 +1,10 @@
+import tower, levelone, leveltwo, levelthree, levelfour, util
+
+def main():
+ levelone.run()
+ levelfour.run()
+ leveltwo.run()
+ levelthree.run()
+ tower.run()
+
+if __name__ == '__main__': main()