mirror of
https://github.com/Wack0/IFPSTools.NET.git
synced 2025-06-18 10:45:36 -04:00
15 lines
215 B
C#
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
|
|
}
|
|
}
|