Ejemplo n.º 1
0
 //возвращает список сохренений
 public void GetSavesList(Action <SavedGameRequestStatus, List <ISavedGameMetadata> > onReceiveList)
 {
     if (!IsAuthenticated)
     {
         onReceiveList(SavedGameRequestStatus.AuthenticationError, null);
         return;
     }
     savedGameClient.FetchAllSavedGames(DataSource.ReadNetworkOnly, onReceiveList);
 }