Exemplo n.º 1
0
 public HighscoreVM(MainViewModel main, string name, long points)
 {
     this.main = main;
     records = new HighscoreRecordList();
     records.AddRecord(name, points);
     Gyoztesek = records.Lista;
 }
Exemplo n.º 2
0
 public HighscoreVM(MainViewModel main)
 {
     this.main = main;
     records = new HighscoreRecordList();
     Gyoztesek = records.Lista;
 }