暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

INativePlatform.cs 621B

1234567891011121314151617
  1. using UnityEngine.Advertisements.Platform;
  2. namespace UnityEngine.Advertisements
  3. {
  4. internal interface INativePlatform
  5. {
  6. void SetupPlatform(IPlatform platform);
  7. void Initialize(string gameId, bool testMode, IUnityAdsInitializationListener initializationListener);
  8. void Load(string placementId, IUnityAdsLoadListener loadListener);
  9. void Show(string placementId, IUnityAdsShowListener showListener);
  10. void SetMetaData(MetaData metaData);
  11. bool GetDebugMode();
  12. void SetDebugMode(bool debugMode);
  13. string GetVersion();
  14. bool IsInitialized();
  15. }
  16. }