2025-08-18 23:16:13 +08:00

18 lines
444 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.

// IPresentationTask.cs
using System;
/// <summary>
/// 所有表现任务如播放动画、显示UI的通用接口。
/// </summary>
namespace TH1_Presentation.Sequencer.Task
{
public interface ISequencerTask
{
/// <summary>
/// 执行任务。
/// </summary>
/// <param name="onComplete">任务完成时必须调用的回调函数。</param>
void Execute(Action onComplete);
}
}