This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Frontec/Assets/Scripts/UI/Popup/UI_Popup.cs
jmaniuvc 2936c48466 Frontec
2025-02-24 12:12:52 +09:00

23 lines
399 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Noah;
public class UI_Popup : UI_Base
{
public override bool Init()
{
if (base.Init() == false)
return false;
Managers.UI.SetCanvas(gameObject, true);
return true;
}
public virtual void ClosePopupUI()
{
Managers.UI.ClosePopupUI(this);
}
}