mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-25 15:42:34 -05:00
20 lines
489 B
C
20 lines
489 B
C
#ifndef PMDSKY_ITEM_UTIL_1_H
|
|
#define PMDSKY_ITEM_UTIL_1_H
|
|
|
|
#include "util.h"
|
|
|
|
#ifdef EUROPE
|
|
void SprintfStatic__0200E808_EU(char* buf, const char* fmt, ...);
|
|
#endif
|
|
|
|
u8 GetExclusiveItemType(s16 item_id);
|
|
s16 GetExclusiveItemOffsetEnsureValid(s16 item_id);
|
|
|
|
// Checks if an item is valid given its ID.
|
|
// In particular, checks if the "is valid" flag is set on its item_p.bin entry.
|
|
bool8 IsItemValid(s16 item_id);
|
|
|
|
s16 GetExclusiveItemParameter(s16 item_id);
|
|
|
|
#endif //PMDSKY_ITEM_UTIL_1_H
|