13 lines
256 B
C#
13 lines
256 B
C#
|
|
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();
|
||
|
|
}
|
||
|
|
}
|