18 lines
376 B
C#
18 lines
376 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Future.Contract
|
|
{
|
|
/// <summary>
|
|
/// 所有逻辑指令的公共基类
|
|
/// </summary>
|
|
[InstructionDefine(InstKind = EInstructionKind.Logical)]
|
|
public abstract class LogicalInstructBase : FutureInstruct
|
|
{
|
|
//
|
|
}
|
|
}
|