Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

INativeBanner.cs 392B

12345678910111213
  1. namespace UnityEngine.Advertisements
  2. {
  3. internal interface INativeBanner
  4. {
  5. bool IsLoaded { get; }
  6. void SetupBanner(IBanner banner);
  7. void Load(string placementId, BannerLoadOptions loadOptions);
  8. void Show(string placementId, BannerOptions showOptions);
  9. void Hide(bool destroy = false);
  10. void SetPosition(BannerPosition position);
  11. }
  12. }