Files
M-Gameton-06/Gameton-06/Assets/Gameton/Scripts/UI/IngameOptionUI.cs

22 lines
411 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class IngameOptionUI : UIBase
{
// Start is called before the first frame update
void Start()
{
UIManager.Show<IngameOptionUI>(UIList.IngameOptionUI);
}
// Update is called once per frame
void Update()
{
}
}
}