diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2023-12-30 18:42:30 +0100 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2023-12-30 18:42:30 +0100 |
| commit | 5676cb7890facded77c5cf32c6017fbf12a4d386 (patch) | |
| tree | b4c20f5d35f988becdb69dbd86b1aedef405286b /include/object | |
| parent | 3b87c0416294e830ad256226f315c6b416160493 (diff) | |
Use new entity structs in a few more files
Diffstat (limited to 'include/object')
| -rw-r--r-- | include/object/houseSign.h | 13 | ||||
| -rw-r--r-- | include/object/itemForSale.h | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/include/object/houseSign.h b/include/object/houseSign.h new file mode 100644 index 00000000..c437adee --- /dev/null +++ b/include/object/houseSign.h @@ -0,0 +1,13 @@ +#ifndef HOUSESIGN_H +#define HOUSESIGN_H + +#include "entity.h" + +typedef struct { + /*0x00*/ Entity base; + /*0x68*/ u8 unused1[24]; + /*0x80*/ s16 unk_80; + /*0x82*/ s16 unk_82; +} HouseSignEntity; + +#endif // HOUSESIGN_H diff --git a/include/object/itemForSale.h b/include/object/itemForSale.h new file mode 100644 index 00000000..6f22e5e0 --- /dev/null +++ b/include/object/itemForSale.h @@ -0,0 +1,13 @@ +#ifndef ITEMFORSALE_H +#define ITEMFORSALE_H + +#include "object.h" + +typedef struct { + /*0x00*/ Entity base; + /*0x68*/ u8 unk_68[0x18]; + /*0x80*/ u16 unk_80; + /*0x82*/ u16 unk_82; +} ItemForSaleEntity; + +#endif // ITEMFORSALE_H |
