Example #1
0
File: Save.cs Project: robertg/Soar
 public Save(Config config, List<Posting> leaderboards)
 {
     Config = config;
     Leaderboards = leaderboards;
 }
Example #2
0
File: Save.cs Project: robertg/Soar
 public Save()
 {
     Config = new Config();
     Leaderboards = new List<Posting>();
     Leaderboards.Add(new Posting("n00b", 3));
     Leaderboards.Add(new Posting("normal", 10));
     Leaderboards.Add(new Posting("pro", 30));
     Leaderboards.Add(new Posting("zealot", 50));
     Leaderboards.Add(new Posting("godly", 75));
 }