示例#1
0
 private void LoadDatabases()
 {
     Loading            = true;
     ExhibitData        = new ExhibitData();
     LeaderboardData    = new LeaderboardData();
     AllLeaderboardData = new LeaderboardData();
     StartCoroutine(ExhibitData.GetData(ExhibitDatabasePath));
     StartCoroutine(AllLeaderboardData.GetData(AllLeaderboardDatabasePath));
     StartCoroutine(LeaderboardData.GetData(LeaderboardDatabasePath));
     StartCoroutine(CheckIsDoneParsing());
 }