Skip to content

Instantly share code, notes, and snippets.

@ekelokorpi
Created April 11, 2015 12:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ekelokorpi/636e5686d2d1614ba2f3 to your computer and use it in GitHub Desktop.
Save ekelokorpi/636e5686d2d1614ba2f3 to your computer and use it in GitHub Desktop.
game.module(
'game.main'
)
.body(function() {
game.createScene('Main', {
init: function() {
var sprite = new game.Sprite('panda.png');
sprite.addTo(this.stage);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment