view gamelib/main.py @ 15:05f4e9e09764

rename in data.py as well
author Neil Muller <neil@dip.sun.ac.za>
date Sun, 22 Aug 2010 16:30: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()