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

15
setup.py Normal file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env python
from distutils.core import setup
setup(
name='FuckThisCollapse',
version='0.1',
description='Fuck This Collapse game',
author='Andrew Kesterson',
author_email='andrew@aklabs.net',
url='https://github.com/akesterson/FuckThisCollapse',
packages=['fuckthiscollapse'],
scripts=['scripts/game.py'],
install_requires=['pygame']
)