Files
M-Gameton-06/Gameton-06/Assets/Gameton/Scripts/UI/ControllerUI.cs
2025-01-24 17:55:26 +09:00

18 lines
341 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
namespace TON
{
public class ControllerUI : UIBase
{
public static ControllerUI Instance => UIManager.Singleton.GetUI<ControllerUI>(UIList.ControllerUI);
private void Start()
{
}
}
}