├── .gitignore ├── LICENSE ├── README.md ├── css └── app.css ├── img ├── sprites.png ├── sprites.psd └── terrain.png ├── index.html ├── js ├── app.js ├── input.js ├── resources.js └── sprite.js └── tutorial.md /.gitignore: -------------------------------------------------------------------------------- 1 | .#* 2 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlongster/canvas-game-bootstrap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlongster/canvas-game-bootstrap/HEAD/README.md -------------------------------------------------------------------------------- /css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlongster/canvas-game-bootstrap/HEAD/css/app.css -------------------------------------------------------------------------------- /img/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlongster/canvas-game-bootstrap/HEAD/img/sprites.png -------------------------------------------------------------------------------- /img/sprites.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlongster/canvas-game-bootstrap/HEAD/img/sprites.psd -------------------------------------------------------------------------------- /img/terrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlongster/canvas-game-bootstrap/HEAD/img/terrain.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlongster/canvas-game-bootstrap/HEAD/index.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlongster/canvas-game-bootstrap/HEAD/js/app.js -------------------------------------------------------------------------------- /js/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlongster/canvas-game-bootstrap/HEAD/js/input.js -------------------------------------------------------------------------------- /js/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlongster/canvas-game-bootstrap/HEAD/js/resources.js -------------------------------------------------------------------------------- /js/sprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlongster/canvas-game-bootstrap/HEAD/js/sprite.js -------------------------------------------------------------------------------- /tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlongster/canvas-game-bootstrap/HEAD/tutorial.md --------------------------------------------------------------------------------