mirror of
https://github.com/zeldaret/tmc
synced 2026-05-23 23:05:38 -04:00
10 lines
216 B
C
10 lines
216 B
C
#include "item.h"
|
|
|
|
extern Entity* sub_08077BD4(ItemBehavior*);
|
|
extern void DeletePlayerItem(ItemBehavior*, u32);
|
|
|
|
void ItemDebug(ItemBehavior* beh, u32 idx) {
|
|
sub_08077BD4(beh);
|
|
DeletePlayerItem(beh, idx);
|
|
}
|