feat: 골드 생선 부족 시 경고 팝업 추가

This commit is contained in:
aube.lee
2025-02-28 10:12:45 +09:00
parent e3ffb10da5
commit c00cbc44aa
10 changed files with 739 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class GoldPopup : UIBase
{
private void OnEnable()
{
Invoke(nameof(HidePopup), 3f);
}
private void HidePopup()
{
UIManager.Hide<GoldPopup>(UIList.GoldPopup);
}
}
}