diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-01-29 11:58:11 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-01-29 12:02:04 -0400 |
commit | 157dd9901bbbdda5b50bcfcf652236c7ef1de6c4 (patch) | |
tree | 0219aa38397526552fae557a3f6eb49638272ee6 /include/pso | |
parent | b93fd68a7bbb54369ecfb541a1d7690ef897e6c4 (diff) |
TObject: Use `types.h` to get the typedefs
Diffstat (limited to 'include/pso')
-rw-r--r-- | include/pso/TObject.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/pso/TObject.h b/include/pso/TObject.h index a24b32a..74d7d1c 100644 --- a/include/pso/TObject.h +++ b/include/pso/TObject.h @@ -1,9 +1,6 @@ #pragma once -typedef unsigned char u8; -typedef unsigned short u16; -typedef unsigned int u32; +#include "types.h" -#define NULL 0 #define OBJECT_NAMES \ o(TObject) |