Simple maps are working, swapping marbles around, limited number of marble moves, etc. Basic collapse bits.

This commit is contained in:
2014-06-02 23:13:23 -07:00
parent 3106a84974
commit 87362a6c69
10 changed files with 261 additions and 0 deletions

9
scripts/game.py Normal file
View File

@@ -0,0 +1,9 @@
import fuckthiscollapse.Game
import sys
def main(argc, argv):
game = fuckthiscollapse.Game.Game()
return game.run()
if __name__ == "__main__":
sys.exit(main(len(sys.argv), sys.argv))