view gamelib/main.py @ 3:41761fcd7386

Fold temporary README into README.txt template.
author Simon Cross <hodgestar@gmail.com>
date Sun, 30 Aug 2009 12:17:15 +0000
parents e057e9483488
children e8ddbc95cbf3
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()