├── .gitignore ├── COPYING ├── README ├── game └── __init__.py ├── images ├── enemy_01.png ├── enemy_02.png └── ship.png ├── index.html └── tests ├── browser.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbueno/browser_invaders/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbueno/browser_invaders/HEAD/COPYING -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbueno/browser_invaders/HEAD/README -------------------------------------------------------------------------------- /game/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbueno/browser_invaders/HEAD/game/__init__.py -------------------------------------------------------------------------------- /images/enemy_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbueno/browser_invaders/HEAD/images/enemy_01.png -------------------------------------------------------------------------------- /images/enemy_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbueno/browser_invaders/HEAD/images/enemy_02.png -------------------------------------------------------------------------------- /images/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbueno/browser_invaders/HEAD/images/ship.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbueno/browser_invaders/HEAD/index.html -------------------------------------------------------------------------------- /tests/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbueno/browser_invaders/HEAD/tests/browser.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbueno/browser_invaders/HEAD/tests/tests.py --------------------------------------------------------------------------------