18 lines
341 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|