19 lines
399 B
C#
19 lines
399 B
C#
|
|
using Microsoft.Win32;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Security.AccessControl;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Future.Contract
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 所有指令空间的基类,可以使用Return指令退出
|
|||
|
|
/// </summary>
|
|||
|
|
public abstract class StructInstructBase : FutureInstruct
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|