summaryrefslogtreecommitdiff
path: root/include/m_quest.h
diff options
context:
space:
mode:
authorMaide <34639600+Kelebek1@users.noreply.github.com>2023-08-18 04:44:08 +0100
committerGitHub <noreply@github.com>2023-08-17 20:44:08 -0700
commitc863d781327c1d371cb81ad31a4fd06b53e1b953 (patch)
tree27d282e78cfe134623a000394dace56d03eb261a /include/m_quest.h
parentae5aa8db7c07a162cf140a30e9af772c57e4b16b (diff)
m_start_data_init (#61)
* m_start_data_init * Fix NPC, m,atch last func * Rebased * Rebased * Update struct names * PR --------- Co-authored-by: Maide <you@example.com>
Diffstat (limited to 'include/m_quest.h')
-rw-r--r--include/m_quest.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/m_quest.h b/include/m_quest.h
new file mode 100644
index 0000000..671d511
--- /dev/null
+++ b/include/m_quest.h
@@ -0,0 +1,20 @@
+#ifndef M_QUEST_H
+#define M_QUEST_H
+
+#include "ultra64.h"
+
+/* 'Not Saved' Quest */
+typedef struct mQst_not_saved_c {
+ /* 0x00 */ s32 work;
+ /* 0x04 */ u8 h;
+} mQst_not_saved_c; // size = 0x5
+
+typedef struct mQst_delivery_c {
+ /* 0x00 */ char unk00[0x24];
+} mQst_delivery_c; // size = 0x24
+
+typedef struct mQst_errand_c {
+ /* 0x00 */ char unk00[0x50];
+} mQst_errand_c; // size = 0x50
+
+#endif