Esempio n. 1
0
 public void UpdateMap(LootLockerCreatingMapsRequest updatedMap)
 {
     LootLockerSDKAdminManager.UpdatingMaps(updatedMap, activeMap.map_id, (response) =>
     {
         if (response.success)
         {
             Debug.Log("Successful updated map: " + response.text);
         }
         else
         {
             Debug.LogError("failed to update map: " + response.Error);
         }
     });
 }
Esempio n. 2
0
 public void UpdatingMaps()
 {
     LootLockerSDKAdminManager.UpdatingMaps(updatedMap, mapID, (response) =>
     {
         if (response.success)
         {
             Debug.LogError("Successful updated map: " + response.text);
         }
         else
         {
             Debug.LogError("failed to update map: " + response.Error);
         }
     });
 }