11 lines
251 B
C#
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;
|
|
} |