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 } }