using System.Collections; using System.Collections.Generic; using UnityEngine; public class NotOnlinePopup : PopupBase { public override void ShowPopup(int drawOrder) { base.ShowPopup(drawOrder); GameManager.Sound.PlaySFX(ESFXType.Open_Popup); } public void ClickClose() { GameManager.Sound.PlaySFX(ESFXType.Button_Hit); GameManager.UI.HideTopPopup(); } }