using UnityEngine;
public class IngameCanvas : MonoBehaviour
{
public static IngameCanvas Ins;
private void Awake()
Ins = this;
m_IngameUI.gameObject.SetActive(true);
}
public IngameUI m_IngameUI;
public IngameChoiceSkillUI m_ChoiceSkillUI;