view gamelib/main.py @ 1:c90a6586cd66

PEP8-ify skellington (because)
author Neil Muller <drnlmuller@gmail.com>
date Sun, 06 May 2012 10:32:24 +0200
parents d0de8832774b
children 9c4bf1f15431
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()