Files
ichni_Official/Assets/Scripts/NewStorySystem/Helper/StoryHelperVisualPresenter.cs
SoulliesOfficial 810d019619 剧情+对话完善
2026-07-21 15:24:42 -04:00

16 lines
578 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using UnityEngine;
namespace Ichni.Story
{
/// <summary>
/// Helper 视觉表现的抽象接口。
/// <para>StoryHelperController 不直接依赖 Image、Spine 或 Live2D。未来替换表现方式时
/// 只需实现本类并替换场景引用,点击、随机台词与气泡逻辑无需改变。</para>
/// </summary>
public abstract class StoryHelperVisualPresenter : MonoBehaviour
{
/// <summary>根据当前 Helper 数据刷新视觉资源。</summary>
public abstract void ApplyHelper(StoryHelperData helperData);
}
}