mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-25 07:24:42 -05:00
decomp more item funcs new file boundary and more decomp address review comments Match IsValidTargetItem thanks to @taxicat1
14 lines
292 B
C
14 lines
292 B
C
#ifndef PMDSKY_ITEM_UTIL_4_H
|
|
#define PMDSKY_ITEM_UTIL_4_H
|
|
|
|
#include "item.h"
|
|
|
|
BOOL IsLosableItem(struct item* item);
|
|
bool8 IsTreasureBox(s16 item_id);
|
|
bool8 IsStorableItem(s16 item_id);
|
|
bool8 IsShoppableItem(s16 item_id);
|
|
bool8 IsValidTargetItem(s16 item_id);
|
|
|
|
#endif //PMDSKY_ITEM_UTIL_4_H
|
|
|