comparison gamelib/main.py @ 0:d0de8832774b

Import skellington-1.9 into the repo
author Neil Muller <drnlmuller+bitbucket@gmail.com>
date Sat, 05 May 2012 13:52:29 +0200
parents
children c90a6586cd66
comparison
equal deleted inserted replaced
-1:000000000000 0:d0de8832774b
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()