Skip to content

Instantly share code, notes, and snippets.

@legumbre
Created October 18, 2012 00:12
Show Gist options
  • Save legumbre/3909136 to your computer and use it in GitHub Desktop.
Save legumbre/3909136 to your computer and use it in GitHub Desktop.
-- Persistent Data
local multiRefObjects = {
} -- multiRefObjects
local obj1 = {
["arcade"] = {
};
["session"] = {
["last_level_score"] = 0;
["sequence"] = "arcade";
["group"] = "wisdom";
["is_highscore"] = false;
["index"] = 2;
["score"] = 0;
};
["stars"] = {
["total"] = 0;
["skill"] = 0;
};
["showtime"] = {
};
["player_name"] = "Unknown User";
["settings"] = {
["music_gain"] = 0.8;
["sounds_gain"] = 1;
};
}
return obj1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment