Files
M-Gameton-06/Gameton-06/Assets/Gameton/Scripts/Common/UIBase.cs
2025-01-21 22:53:52 +09:00

20 lines
342 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class UIBase : MonoBehaviour
{
public virtual void Show()
{
gameObject.SetActive(true);
}
public virtual void Hide()
{
gameObject.SetActive(false);
}
}
}