Files
tmc/src/item/itemDebug.c
T
2022-08-09 18:56:13 +02:00

10 lines
271 B
C

#include "item.h"
extern Entity* CreatePlayerItemForItemIfNotExists(ItemBehavior*);
extern void DeleteItemBehavior(ItemBehavior*, u32);
void ItemDebug(ItemBehavior* this, u32 index) {
CreatePlayerItemForItemIfNotExists(this);
DeleteItemBehavior(this, index);
}