├── LICENSE ├── README.md ├── assets ├── loading.png ├── progress_bar_bg.png └── progress_bar_fg.png ├── index.html ├── package.json ├── src ├── game.js └── states │ ├── boot.js │ ├── load.js │ ├── menu.js │ └── play.js └── start.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/README.md -------------------------------------------------------------------------------- /assets/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/assets/loading.png -------------------------------------------------------------------------------- /assets/progress_bar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/assets/progress_bar_bg.png -------------------------------------------------------------------------------- /assets/progress_bar_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/assets/progress_bar_fg.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/package.json -------------------------------------------------------------------------------- /src/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/src/game.js -------------------------------------------------------------------------------- /src/states/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/src/states/boot.js -------------------------------------------------------------------------------- /src/states/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/src/states/load.js -------------------------------------------------------------------------------- /src/states/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/src/states/menu.js -------------------------------------------------------------------------------- /src/states/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/src/states/play.js -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaisRobba/browserify-phaser/HEAD/start.sh --------------------------------------------------------------------------------