Files
FueraDeEscala/Assets/Game Kit Controller/Scripts/Skills System/skillSlotPanelInfo.cs
Robii Aragon fd87a6ffd5 add ckg
plantilla base para movimiento básico
2026-02-05 05:07:55 -08:00

18 lines
413 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
[System.Serializable]
public class skillSlotPanelInfo
{
public GameObject skillSlot;
public GameObject slotActive;
public GameObject slotLocked;
public GameObject slotUnlocked;
public Text slotSkillAmountText;
public GameObject slotPressedIcon;
public Transform confirmUseSkillPointsPanelPosition;
}