20 lines
419 B
C#
20 lines
419 B
C#
|
|
using System;
|
||
|
|
using Cysharp.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace Stary.Evo.StoryEditor
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 结束节点
|
||
|
|
/// </summary>
|
||
|
|
[Serializable, CreateNodeMenu("")]
|
||
|
|
public class EndNode : NodeBase
|
||
|
|
{
|
||
|
|
[Input]
|
||
|
|
public Enter enter;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 导出
|
||
|
|
/// </summary>
|
||
|
|
public new async UniTask<EndNodeData> Export() => new(await base.Export());
|
||
|
|
}
|
||
|
|
}
|