10 lines
238 B
C#
10 lines
238 B
C#
using UnityEngine;
|
|
|
|
namespace TemplateUnity.Core
|
|
{
|
|
public abstract class UICore: MonoBehaviour
|
|
{
|
|
protected void Show() => gameObject.SetActive(true);
|
|
protected void Hide() => gameObject.SetActive(false);
|
|
}
|
|
} |