Update Inventory struct

This commit is contained in:
Aetias
2023-12-20 10:44:33 +01:00
parent e5d545a7da
commit e6257e902b
4 changed files with 211 additions and 58 deletions
+18 -12
View File
@@ -1,12 +1,18 @@
#ifndef PH_TYPES_H
#define PH_TYPES_H
typedef unsigned int u32;
typedef unsigned short u16;
typedef unsigned char u8;
typedef int s32;
typedef short s16;
typedef char s8;
#endif
#ifndef PH_TYPES_H
#define PH_TYPES_H
typedef unsigned int u32;
typedef unsigned short u16;
typedef unsigned char u8;
typedef int s32;
typedef short s16;
typedef char s8;
typedef u8 unk8;
typedef u16 unk16;
typedef u32 unk32;
#define CEIL_DIV(a, b) (((a) + (b) - 1) / (b))
#endif