Esempio n. 1
0
 public static void CreatingMaps(LootLockerCreatingMapsRequest request, bool sendAssetID, bool sendSpawnPoints, Action <LootLockerCreatingMapsResponse> onComplete)
 {
     if (!CheckInitialized())
     {
         return;
     }
     LootLockerAPIManagerAdmin.CreatingMaps(request, sendAssetID, sendSpawnPoints, onComplete);
 }
Esempio n. 2
0
        public static void UpdatingMaps(LootLockerCreatingMapsRequest request, int mapID, Action <LootLockerCreatingMapsResponse> onComplete)
        {
            if (!CheckInitialized())
            {
                return;
            }
            LootLockerGetRequest lootLockerGetRequest = new LootLockerGetRequest();

            lootLockerGetRequest.getRequests.Add(mapID.ToString());
            LootLockerAPIManagerAdmin.UpdatingMaps(lootLockerGetRequest, request, onComplete);
        }