Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }