将以往的代码复制到代码库
This commit is contained in:
19
Future.Contract/Instruction/BehaviorInstructBase.cs
Normal file
19
Future.Contract/Instruction/BehaviorInstructBase.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Future.Contract
|
||||
{
|
||||
/// <summary>
|
||||
/// 所有行为指令的公共基类,可以附加于“目标”指令,为目标指令附加对应的参数并初始化;行为指令可以单独开线程执行
|
||||
/// </summary>
|
||||
public abstract class BehaviorInstructBase //: FutureInstruct
|
||||
{
|
||||
/// <summary>
|
||||
/// 目标指令的上下文名称
|
||||
/// </summary>
|
||||
public string Target { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user