Skip to content

Instantly share code, notes, and snippets.

@jamesmundy
Created November 26, 2014 17:06
Show Gist options
  • Save jamesmundy/9e94e9c4f258168c4c25 to your computer and use it in GitHub Desktop.
Save jamesmundy/9e94e9c4f258168c4c25 to your computer and use it in GitHub Desktop.
Settings class for retrieving data using ApplicationSettings
public class Settings
{
//Store game highscore.
public static readonly Setting<int> HighScore = new Setting<int>("HighScore", 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment