Co-authored-by: m0_75251201 <m0_75251201@noreply.gitcode.com> Reviewed-on: Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite#55
16 lines
204 B
C#
16 lines
204 B
C#
using UnityEngine;
|
|
|
|
|
|
namespace UI
|
|
{
|
|
|
|
public class EquipmentUI : MonoBehaviour
|
|
{
|
|
public ItemUI currentUse;
|
|
public ItemUI two;
|
|
public ItemUI three;
|
|
|
|
|
|
}
|
|
}
|