diff gamelib/main.py @ 0:f2c3b516741b simon

Theme is 'Caught'. Start with Skellington 1.9.
author Simon Cross <hodgestar+bzr@gmail.com>
date Sun, 22 Aug 2010 09:42:24 +0200
parents
children 55f1969e41c9
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gamelib/main.py	Sun Aug 22 09:42:24 2010 +0200
@@ -0,0 +1,13 @@
+'''Game main module.
+
+Contains the entry point used by the run_game.py script.
+
+Feel free to put all your game code here, or in other modules in this "gamelib"
+package.
+'''
+
+import data
+
+def main():
+    print "Hello from your game's main()"
+    print data.load('sample.txt').read()