diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-05 00:31:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-05 00:31:11 +0300 |
commit | 7223ee1b262437ce14046cd15e83e4c0699aa465 (patch) | |
tree | 0756bf00d4d91b1cd3cd4757ea519989b5a15800 /src/being/playerinfo.h | |
parent | 0fca8408dca8560fa74bb666a8e1e147e4de75fd (diff) | |
download | plus-7223ee1b262437ce14046cd15e83e4c0699aa465.tar.gz plus-7223ee1b262437ce14046cd15e83e4c0699aa465.tar.bz2 plus-7223ee1b262437ce14046cd15e83e4c0699aa465.tar.xz plus-7223ee1b262437ce14046cd15e83e4c0699aa465.zip |
add missing consts in playerinfo.
Diffstat (limited to 'src/being/playerinfo.h')
-rw-r--r-- | src/being/playerinfo.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/being/playerinfo.h b/src/being/playerinfo.h index eef07c584..5311a24f4 100644 --- a/src/being/playerinfo.h +++ b/src/being/playerinfo.h @@ -258,19 +258,19 @@ namespace PlayerInfo void setEquipmentBackend(Equipment::Backend *const backend); - void equipItem(const Item *const item, bool sfx); + void equipItem(const Item *const item, const bool sfx); - void unequipItem(const Item *const item, bool sfx); + void unequipItem(const Item *const item, const bool sfx); - void useItem(const Item *const item, bool sfx); + void useItem(const Item *const item, const bool sfx); - void useEquipItem(const Item *const item, bool sfx); + void useEquipItem(const Item *const item, const bool sfx); - void useEquipItem2(const Item *const item, bool sfx); + void useEquipItem2(const Item *const item, const bool sfx); - void dropItem(const Item *const item, const int amount, bool sfx); + void dropItem(const Item *const item, const int amount, const bool sfx); - void pickUpItem(const FloorItem *const item, bool sfx); + void pickUpItem(const FloorItem *const item, const bool sfx); void protectItem(const int id); |