diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-11-16 22:17:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-11-16 22:17:15 +0300 |
commit | 5e8e53f6e795a84ab5ca6cfe0d08672878044707 (patch) | |
tree | 23f5a196c6a288ef52cea2742b02ddbc52b2db61 /src/net/eathena/inventoryhandler.h | |
parent | 0c063cf5b45a843485fe3343e5fb79a40141f88c (diff) | |
download | plus-5e8e53f6e795a84ab5ca6cfe0d08672878044707.tar.gz plus-5e8e53f6e795a84ab5ca6cfe0d08672878044707.tar.bz2 plus-5e8e53f6e795a84ab5ca6cfe0d08672878044707.tar.xz plus-5e8e53f6e795a84ab5ca6cfe0d08672878044707.zip |
Convert InventoryType enum into strong typed.
Diffstat (limited to 'src/net/eathena/inventoryhandler.h')
-rw-r--r-- | src/net/eathena/inventoryhandler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/eathena/inventoryhandler.h b/src/net/eathena/inventoryhandler.h index 924275757..a398fe2eb 100644 --- a/src/net/eathena/inventoryhandler.h +++ b/src/net/eathena/inventoryhandler.h @@ -46,12 +46,12 @@ class InventoryHandler final : public Ea::InventoryHandler void dropItem(const Item *const item, const int amount) const override final; - void closeStorage(const int type) const override final; + void closeStorage() const override final; - void moveItem2(const int source, + void moveItem2(const InventoryTypeT source, const int slot, const int amount, - const int destination) const override final; + const InventoryTypeT destination) const override final; void useCard(const Item *const item) override final; |