Files
M-Gameton-06/Gameton-06/Assets/Gameton/Scripts/UI/FishPopup.cs

20 lines
352 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class FishPopup : UIBase
{
private void OnEnable()
{
Invoke(nameof(HidePopup), 3f);
}
private void HidePopup()
{
UIManager.Hide<FishPopup>(UIList.FishPopup);
}
}
}