2026-04-11 에러수정

This commit is contained in:
2026-04-11 09:04:58 +09:00
parent 00b832296b
commit ba93dc6d2f
57 changed files with 378 additions and 23 deletions

View File

@@ -1,10 +1,12 @@
using UnityEngine;
[System.Serializable]
public abstract class UseableEntry : ScriptableObject
{
[Header("기본 정보")]
public string EntryName;
public string EntryDesc;
public Sprite icon;
[TextArea] public string EntryDesc;
public Sprite Icon;
public abstract void Use();
}