diff options
author | Revo <projectrevotpp@hotmail.com> | 2021-05-26 19:44:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-26 19:44:45 -0400 |
commit | 06c43a0f10dc2afc08bf36311cd3b502c291df65 (patch) | |
tree | 99b9db89e31452dcb4953c19e353cc2ddc1f16bd /arm9/modules/06/include/module_06.h | |
parent | 554a409ba09dfd8c70bc22579dfcec231c3b9d36 (diff) | |
parent | a9b136cf606a4c6e0be0de79c8e18759e5ecf4aa (diff) |
Merge pull request #391 from PikalaxALT/pikalax_work
scrcmd_mart.c
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
|