11 lines
241 B
C#
11 lines
241 B
C#
namespace AibisDream
|
|
{
|
|
/// <summary>
|
|
/// 场景级协调器:在 StartDialog 之前完成相机、Bubble 等初始化。
|
|
/// </summary>
|
|
public interface ISceneDialogueGate
|
|
{
|
|
bool IsDialogueReady { get; }
|
|
}
|
|
}
|