Esempio n. 1
0
 public void GetAllKeyValuePairsToAnInstance()
 {
     LootLockerSDKManager.GetAllKeyValuePairsToAnInstance(int.Parse(instanceId), (response) =>
     {
         if (response.success)
         {
             labelText = "Success: " + response.text;
         }
         else
         {
             labelText = "Failed: " + response.text;
         }
     });
 }