Files
WhaleAdventure_VR/Assets/My project/Dialogue Scripts/UI/NPCProfile.cs
skrwns304@gmail.com b1e85a5b89 2026-06-19 UI, UI로직
2026-06-19 14:27:40 +09:00

11 lines
251 B
C#

using UnityEngine;
[CreateAssetMenu(fileName = "New NPC Profile",
menuName = "Dialogue/NPC Profile")]
public class NPCProfile : ScriptableObject
{
[Header("NPC Info")]
public string displayName;
public Sprite portrait;
}