Created
August 5, 2014 03:03
-
-
Save pr00thmatic/2937f6855d3068644e78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // función indispensable para phaser. | |
| function preload() { //Cargando los recursos que necesitaremos. | |
| game.load.image('wall', 'assets/wall.png'); | |
| game.load.image('acera', 'assets/acera.png'); | |
| game.load.spritesheet('uno', 'assets/uno.png', 16, 16); | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment