diff options
Diffstat (limited to 'src/config.h')
| -rw-r--r-- | src/config.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h index 019ceaf..e0f8fe7 100644 --- a/src/config.h +++ b/src/config.h @@ -1,5 +1,11 @@ #pragma once +typedef char i8; +typedef unsigned char u8; + +typedef short i16; +typedef unsigned short u16; + typedef int i32; typedef long long i64; @@ -36,7 +42,7 @@ typedef struct{ fx32 x, y; }vec2; -typedef i32 b32; +typedef i8 b32; #define false 0 #define true 1 |
