PopUpUtil.cs 183 B

12345678910
  1. using UnityEngine;
  2. using System.Collections;
  3. public class PopUpUtil : MonoBehaviour {
  4. // Update is called once per frame
  5. void OnDestroy () {
  6. PopUpManager.UpdateModal();
  7. }
  8. }