diff options
author | Akira Akashi <rubenru09@aol.com> | 2021-06-01 20:40:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-01 20:40:37 +0100 |
commit | 389b33f7d8499cab5b3b9e2ba21d786b1059c059 (patch) | |
tree | f02042907a117ce618b0a67c0b5cd82fc45cfcd7 /arm9/modules/06/include/module_06.h | |
parent | 5a73f4f645faf368cf8e20cfe4793e2b12672472 (diff) | |
parent | f67d6fe193eeee8058a45934d08c3b883cc08eb9 (diff) |
Merge branch 'master' into unkk_020851B8
Diffstat (limited to 'arm9/modules/06/include/module_06.h')
-rw-r--r-- | arm9/modules/06/include/module_06.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arm9/modules/06/include/module_06.h b/arm9/modules/06/include/module_06.h new file mode 100644 index 00000000..d9915f00 --- /dev/null +++ b/arm9/modules/06/include/module_06.h @@ -0,0 +1,14 @@ +#ifndef POKEDIAMOND_MODULE_06_H
+#define POKEDIAMOND_MODULE_06_H
+
+enum MartType
+{
+ MART_ITEMS = 0,
+ MART_GOODS,
+ MART_SEALS,
+ MART_DECORATIONS = MART_GOODS,
+};
+
+void MOD06_0223D3D0(struct UnkStruct_0204639C *, struct UnkSavStruct80 *, const u16 *, enum MartType, u32);
+
+#endif //POKEDIAMOND_MODULE_06_H
|