2013-10-30 03:46:52 +00:00
|
|
|
|
2013-10-28 23:29:04 +00:00
|
|
|
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');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|