EerieVillage/Assets/Scripts/MyUI/Ingame/IngameChoiceSkillUI.cs

14 lines
261 B
C#
Raw Normal View History

2026-04-28 08:01:58 +00:00
using UnityEngine;
public class IngameChoiceSkillUI : MonoBehaviour
{
/// <summary>
/// 0 첫번째, 1 두번째, 2 세번째 스킬 터치
/// </summary>
/// <param name="index"></param>
public void OnClick_Skill(int index)
{
}
}