using System; using UnityEngine; using UnityEngine.Events; namespace Script.Gameplay.Interface { public interface IDialogue { public UnityEvent OnBeginDialogue { get; set; } public UnityEvent OnEndDialogue { get; set; } public bool IsRoad { get; set; } public int GetDialogueCount { get; set; } public string DialogueContent { get; set; } } }