├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── bower.json ├── gulp ├── build.js ├── github.js ├── inject.js ├── scripts.js ├── server.js └── watch.js ├── gulpfile.js ├── package.json └── src ├── images └── phaser-dude.png ├── index.html └── scripts ├── game.js ├── game ├── controllers.js ├── events.js ├── layers.js └── test.js ├── index.js ├── main.js ├── modules └── stats.js ├── pkg.json.js ├── preload.js └── scope.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/bower.json -------------------------------------------------------------------------------- /gulp/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/gulp/build.js -------------------------------------------------------------------------------- /gulp/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/gulp/github.js -------------------------------------------------------------------------------- /gulp/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/gulp/inject.js -------------------------------------------------------------------------------- /gulp/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/gulp/scripts.js -------------------------------------------------------------------------------- /gulp/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/gulp/server.js -------------------------------------------------------------------------------- /gulp/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/gulp/watch.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/images/phaser-dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/src/images/phaser-dude.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/src/index.html -------------------------------------------------------------------------------- /src/scripts/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/src/scripts/game.js -------------------------------------------------------------------------------- /src/scripts/game/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/src/scripts/game/controllers.js -------------------------------------------------------------------------------- /src/scripts/game/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/src/scripts/game/events.js -------------------------------------------------------------------------------- /src/scripts/game/layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/src/scripts/game/layers.js -------------------------------------------------------------------------------- /src/scripts/game/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/src/scripts/game/test.js -------------------------------------------------------------------------------- /src/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/src/scripts/index.js -------------------------------------------------------------------------------- /src/scripts/main.js: -------------------------------------------------------------------------------- 1 | module.exports = {} 2 | -------------------------------------------------------------------------------- /src/scripts/modules/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/src/scripts/modules/stats.js -------------------------------------------------------------------------------- /src/scripts/pkg.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/src/scripts/pkg.json.js -------------------------------------------------------------------------------- /src/scripts/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/src/scripts/preload.js -------------------------------------------------------------------------------- /src/scripts/scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcaetano/phaser-boilerplate/HEAD/src/scripts/scope.js --------------------------------------------------------------------------------