summaryrefslogtreecommitdiff
path: root/include/object
diff options
context:
space:
mode:
authoroctorock <79596758+octorock@users.noreply.github.com>2023-12-30 18:42:30 +0100
committeroctorock <79596758+octorock@users.noreply.github.com>2023-12-30 18:42:30 +0100
commit5676cb7890facded77c5cf32c6017fbf12a4d386 (patch)
treeb4c20f5d35f988becdb69dbd86b1aedef405286b /include/object
parent3b87c0416294e830ad256226f315c6b416160493 (diff)
Use new entity structs in a few more files
Diffstat (limited to 'include/object')
-rw-r--r--include/object/houseSign.h13
-rw-r--r--include/object/itemForSale.h13
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