comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:f2c3b516741b
1 '''Game main module.
2
3 Contains the entry point used by the run_game.py script.
4
5 Feel free to put all your game code here, or in other modules in this "gamelib"
6 package.
7 '''
8
9 import data
10
11 def main():
12 print "Hello from your game's main()"
13 print data.load('sample.txt').read()