pkNX/pkNX.Structures/Scripts/AmxOpCodeType.cs
Kurt 537ce93efa Initial c#8 update
pkNX.Sprites to be replaced with a pkhex.drawing dll once that is
updated with swsh stuff (when the time comes)
2019-10-15 18:47:20 -07:00

16 lines
261 B
C#

namespace pkNX.Structures
{
public enum AmxOpCodeType
{
Unknown = -1,
NoParams,
OneParam,
TwoParams,
ThreeParams,
FourParams,
FiveParams,
Jump,
Packed,
CaseTable,
}
}