diff options
Diffstat (limited to 'src/being/playerinfo.h')
-rw-r--r-- | src/being/playerinfo.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/being/playerinfo.h b/src/being/playerinfo.h index cd454692f..eef07c584 100644 --- a/src/being/playerinfo.h +++ b/src/being/playerinfo.h @@ -61,6 +61,7 @@ struct PlayerInfoBackend final IntMap mSkills; }; +class FloorItem; class Inventory; class Item; @@ -267,6 +268,10 @@ namespace PlayerInfo void useEquipItem2(const Item *const item, bool sfx); + void dropItem(const Item *const item, const int amount, bool sfx); + + void pickUpItem(const FloorItem *const item, bool sfx); + void protectItem(const int id); void unprotectItem(const int id); |