// Use this for initialization void Start() { LevelRecordLoader temp = new LevelRecordLoader(12); temp.ShowAllLevelRecord(); temp.CompareMaxRecord(1, 3); temp.CompareMaxRecord(1, 7); temp.CompareMaxRecord(1, 2); }
// Use this for initialization void Start() { LevelRecordLoader temp = LevelRecordLoader.GetInstance(); temp.ShowAllLevelRecord(); temp.CompareMaxRecord(1, 3); temp.CompareMaxRecord(1, 7); temp.CompareMaxRecord(1, 2); }