view gamelib/main.py @ 10:72b619d01f4d

Package for scenes.
author Simon Cross <hodgestar+bzr@gmail.com>
date Sun, 22 Aug 2010 16:03:04 +0200
parents f2c3b516741b
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()