IFPSTools.NET/IFPSLib/Emit/OpCodeType.cs
2022-08-07 15:42:41 +01:00

15 lines
215 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace IFPSLib.Emit
{
public enum OpCodeType : byte
{
Macro,
Prefix,
Primitive,
Experimental
}
}