Beispiel #1
0
 // Returns the reward item for the loaded rewarded ad.
 public Reward GetRewardItem()
 {
     if (client.IsLoaded())
     {
         return(client.GetRewardItem());
     }
     return(null);
 }
Beispiel #2
0
 // Returns the reward item for the loaded rewarded ad. Returns null if the ad is not loaded.
 public Reward GetRewardItem()
 {
     if (this.isLoaded)
     {
         return(client.GetRewardItem());
     }
     return(null);
 }