18 lines
420 B
C#
18 lines
420 B
C#
// IPresentationTask.cs
|
|
using System;
|
|
|
|
namespace TH1_Presentation.Sequencer.Task
|
|
{
|
|
public interface ISequencerTask
|
|
{
|
|
/// <summary>
|
|
/// 执行任务。
|
|
/// </summary>
|
|
/// <param name="onComplete">任务完成时必须调用的回调函数。</param>
|
|
void Execute(Action onComplete);
|
|
|
|
//返回当前SequencerTask的描述
|
|
string GetDescString();
|
|
}
|
|
}
|