설명 없음
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.

ApplicationQuit.cs 320B

1234567891011121314
  1. using UnityEngine.Events;
  2. namespace UnityEngine.Advertisements.Utilities
  3. {
  4. internal class ApplicationQuit : MonoBehaviour
  5. {
  6. public event UnityAction OnApplicationQuitEventHandler;
  7. private void OnApplicationQuit()
  8. {
  9. OnApplicationQuitEventHandler?.Invoke();
  10. }
  11. }
  12. }