comparison gamelib/main.py @ 2:e057e9483488

Added pyweek skellington.
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 30 Aug 2009 11:58:53 +0000
parents
children e8ddbc95cbf3
comparison
equal deleted inserted replaced
1:837c3c7be8f6 2:e057e9483488
1 '''Game main module.
2
3 Contains the entry point used by the run_game.py script.
4
5 Feel free to put all your game code here, or in other modules in this "gamelib"
6 package.
7 '''
8
9 import data
10
11 def main():
12 print "Hello from your game's main()"
13 print data.load('sample.txt').read()