aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Decoders/IntType.cs
blob: 244e96805310845f89e1f98ce967184d3459987f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace ARMeilleure.Decoders
{
    enum IntType
    {
        UInt8  = 0,
        UInt16 = 1,
        UInt32 = 2,
        UInt64 = 3,
        Int8   = 4,
        Int16  = 5,
        Int32  = 6,
        Int64  = 7
    }
}