22 lines
404 B
C#
22 lines
404 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace TON
|
|
{
|
|
public class SkillSettingUI_SkillSlot : MonoBehaviour
|
|
{
|
|
public GameObject lockerImage;
|
|
|
|
public void SelectedSlot()
|
|
{
|
|
lockerImage.SetActive(true);
|
|
}
|
|
|
|
public void UnselectedSlot()
|
|
{
|
|
lockerImage.SetActive(false);
|
|
}
|
|
}
|
|
}
|