public void LoadHighscores() { table = SaveSystemScript.LoadScore(); if (table == null) { table = new HighscoreTable(); SaveSystemScript.SaveTable(table); } UIManagerScript.instance.ShowHighscoreDeathscreen(table); }
public void LoadHighscores() { if (table == null) { table = SaveSystemScript.LoadScore(); } if (table == null) { table = new HighscoreTable(); SaveSystemScript.SaveTable(table); } }