view gamelib/main.py @ 36:efc4f90cfd63

Mission refactoring and research fix.
author Jeremy Thurgood <firxen@gmail.com>
date Mon, 07 May 2012 00:18:16 +0200
parents c90a6586cd66
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()