14 lines
222 B
C#
14 lines
222 B
C#
|
namespace ChocolArm64.Decoder
|
||
|
{
|
||
|
enum AIntType
|
||
|
{
|
||
|
UInt8 = 0,
|
||
|
UInt16 = 1,
|
||
|
UInt32 = 2,
|
||
|
UInt64 = 3,
|
||
|
Int8 = 4,
|
||
|
Int16 = 5,
|
||
|
Int32 = 6,
|
||
|
Int64 = 7
|
||
|
}
|
||
|
}
|