19 lines
383 B
C#
19 lines
383 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);
|
|
|
|
public VariableJoystick joystick;
|
|
private void Start()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|