RandomGFGoStop/Assets/Scripts/UI/Popup/NotOnlinePopup.cs

19 lines
414 B
C#

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();
}
}