diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-20 09:23:37 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-20 09:23:37 -0400 |
commit | 448adae329f322486961b897984db882e36a0623 (patch) | |
tree | 9f862a03d1e6ed7e64343bbfc3db4c8d5f805eeb /include | |
parent | a16371f513daf21948e372a3955f4cfa0d89a141 (diff) |
Fix warnings in nutdata
Diffstat (limited to 'include')
-rw-r--r-- | include/itemtool.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/itemtool.h b/include/itemtool.h index 525e68f9..d8419c2b 100644 --- a/include/itemtool.h +++ b/include/itemtool.h @@ -21,4 +21,13 @@ struct NutData u8 unkB; }; +NARC * OpenNutsDataNarc(u32 heap_id); +struct NutData * ReadNutDataFromNarc(NARC * narc, u32 berry_idx, u32 heap_id); +void CloseNutsDataNarc(NARC * narc); +struct NutData * LoadNutDataSingle(s32 berry_idx, u32 heap_id); +struct NutData * LoadNutDataSingleByItemId(s32 item_id, u32 heap_id); +u32 GetNutAttr(struct NutData * nut, u32 attr); +struct String * GetNutName(u32 berry_idx, u32 heap_id); +struct String * GetNutDesc(u32 berry_idx, u32 heap_id); + #endif //POKEDIAMOND_ITEMTOOL_H |