summaryrefslogtreecommitdiff
path: root/Source/Asura/AE_Type.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Asura/AE_Type.h')
-rw-r--r--Source/Asura/AE_Type.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/Source/Asura/AE_Type.h b/Source/Asura/AE_Type.h
new file mode 100644
index 0000000..2a2bc70
--- /dev/null
+++ b/Source/Asura/AE_Type.h
@@ -0,0 +1,24 @@
+#ifndef __AE_TYPE_H__
+#define __AE_TYPE_H__
+
+#include <stdint.h>
+
+namespace AsuraEngine
+{
+
+ typedef int8_t int8;
+ typedef uint8_t uint8;
+ typedef uint8 byte;
+ typedef int16_t int16;
+ typedef uint16_t uint16;
+ typedef int32_t int32;
+ typedef uint32_t uint32;
+ typedef int64_t int64;
+ typedef uint64_t uint64;
+
+ typedef uint32_t uint;
+ typedef int32_t sint;
+
+}
+
+#endif \ No newline at end of file