No Description
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.

IUnityLifecycleManager.cs 345B

12345678910111213
  1. using System;
  2. using System.Collections;
  3. using UnityEngine.Events;
  4. namespace UnityEngine.Advertisements.Utilities
  5. {
  6. internal interface IUnityLifecycleManager : IDisposable
  7. {
  8. Coroutine StartCoroutine(IEnumerator enumerator);
  9. void Post(Action action);
  10. void SetOnApplicationQuitCallback(UnityAction action);
  11. }
  12. }