view 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 source

'''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()