20 lines
404 B
C#
20 lines
404 B
C#
using Cielonos.Core.Interaction;
|
|
using UnityEngine;
|
|
|
|
namespace Cielonos.MainGame.Interactions
|
|
{
|
|
public class SupportPersonnel : NpcBase
|
|
{
|
|
protected override void InitializeChoices()
|
|
{
|
|
choices.Add(new InteractionChoice("Talk", Talk));
|
|
}
|
|
|
|
#if UNITY_EDITOR
|
|
private void Reset()
|
|
{
|
|
storyId = "EventTest";
|
|
}
|
|
#endif
|
|
}
|
|
} |