link to final submission since upload seems not to work
Link to download file:http://code.google.com/p/pyweek5-maze/downloads/list
and here is the corresponding md5:
0839e2d6dac2f6c70105ac8473ee6c1a
I used this to generate the md5:
>>> import md5 >>> m= md5.new() >>> m.update(file('Murmel2.zip').read()) >>> m.digest() '\x089\xe2\xd6\xda\xc2\xf6\xc7\x01\x05\xac\x84s\xeel\x1a' >>> m.hexdigest() '0839e2d6dac2f6c70105ac8473ee6c1a' >>>I hope I can upload it as soon as possible.
Some comments:
It has been fun to develop this game because I got a chance to implement collision detection for the first time. I had some knowledge, but did not implement it until now. It is not perfect. Next time I want to concentrate more on gameplay since our gameplay is very limited...
~DR0ID