diff options
Diffstat (limited to 'Source/Asura/Type.h')
-rw-r--r-- | Source/Asura/Type.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Source/Asura/Type.h b/Source/Asura/Type.h new file mode 100644 index 0000000..2a2bc70 --- /dev/null +++ b/Source/Asura/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 |