Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

BannerLoadOptions.cs 746B

123456789101112131415161718192021
  1. namespace UnityEngine.Advertisements
  2. {
  3. /// <summary>
  4. /// Pass these options back to the SDK to notify it of events when loading the banner.
  5. /// </summary>
  6. public class BannerLoadOptions
  7. {
  8. public delegate void LoadCallback();
  9. public delegate void ErrorCallback(string message);
  10. /// <summary>
  11. /// This callback fires when the banner loads successfully and is available to show.
  12. /// </summary>
  13. public LoadCallback loadCallback { get; set; }
  14. /// <summary>
  15. /// This callback fires when an error occurs while loading the banner. If invoked, assume that the banner did not load.
  16. /// </summary>
  17. public ErrorCallback errorCallback { get; set; }
  18. }
  19. }