Files
Future/Future.Contract/Instruction/StructInstructBase.cs
2025-08-30 17:19:57 +08:00

19 lines
399 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
{
}
}