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

13 lines
256 B
C#
Raw Normal View History

2025-08-27 21:08:17 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ClosePopup : PopupBase
{
public void ClickClose()
{
GameManager.Sound.PlaySFX(ESFXType.Button_Hit);
GameManager.UI.HideTopPopup();
}
}