essential.storeHighScore
Prototype
function storeHighScore()
Return value
true if this game should store high scores
Description
Return true if you want this game to store high scores. Called at the end of each game.
Example code
function storeHighScore()
{
// This game will store high scores, so we return true here
return true;
}
