blob: 0cfd333b3dbfe0731d7b8bb3a83d91dad9d5aa14 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "item.h"
extern Entity* CreatePlayerItemForItemIfNotExists(ItemBehavior*);
extern void DeleteItemBehavior(ItemBehavior*, u32);
void ItemDebug(ItemBehavior* this, u32 index) {
CreatePlayerItemForItemIfNotExists(this);
DeleteItemBehavior(this, index);
}
|