16 lines
322 B
C#
16 lines
322 B
C#
using UnityEngine;
|
|
|
|
public class UI_Popup : UI_Base
|
|
{
|
|
// 뭐든 start에서 초기화 하는게 아니라 이걸로 초기화 한다.
|
|
public virtual void Init()
|
|
{
|
|
Managers.UI.SetCanvas(gameObject, true);
|
|
}
|
|
|
|
public virtual void ClosePopUI()
|
|
{
|
|
Managers.UI.ClosePopupUI(this);
|
|
}
|
|
}
|