New: You'll now find a complete Basic project Template in the resources/Project Templates folder. Will add more complex ones soon.

This commit is contained in:
photonstorm
2013-10-28 23:29:34 +00:00
parent 2b40d2f507
commit 7ceb11ae49
9 changed files with 231 additions and 1 deletions
+31
View File
@@ -0,0 +1,31 @@
BasicGame.Game = function (game) {
// Honestly, just about anything could go here.
};
BasicGame.Game.prototype = {
create: function () {
// Honestly, just about anything could go here. It's YOUR game after all. Eat your heart out!
},
update: function () {
// Honestly, just about anything could go here. It's YOUR game after all. Eat your heart out!
},
quitGame: function (pointer) {
// Here you should destroy anything you no longer need.
// Stop music, delete sprites, purge caches, free resources, all that good stuff.
// Then let's go back to the main menu.
this.game.state.start('MainMenu');
}
};