aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/Decoders/IntType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ARMeilleure/Decoders/IntType.cs')
-rw-r--r--src/ARMeilleure/Decoders/IntType.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ARMeilleure/Decoders/IntType.cs b/src/ARMeilleure/Decoders/IntType.cs
new file mode 100644
index 00000000..244e9680
--- /dev/null
+++ b/src/ARMeilleure/Decoders/IntType.cs
@@ -0,0 +1,14 @@
+namespace ARMeilleure.Decoders
+{
+ enum IntType
+ {
+ UInt8 = 0,
+ UInt16 = 1,
+ UInt32 = 2,
+ UInt64 = 3,
+ Int8 = 4,
+ Int16 = 5,
+ Int32 = 6,
+ Int64 = 7
+ }
+} \ No newline at end of file