feat(Dialogue): 实现基本的对话系统

This commit is contained in:
2025-10-23 15:46:17 +08:00
parent 4ef8430c6b
commit f6f523e609
29 changed files with 1398 additions and 86 deletions

View File

@@ -0,0 +1,15 @@
using System;
using UnityEngine;
using UnityEngine.Events;
namespace Script.Gameplay.Interface
{
public interface IDialogue
{
public UnityEvent<bool> OnBeginDialogue { get; set; }
public UnityEvent<bool> OnEndDialogue { get; set; }
public bool IsRoad { get; set; }
public int GetDialogueCount { get; set; }
public string DialogueContent { get; set; }
}
}