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/inventoryhandler.h | |
parent | 0c063cf5b45a843485fe3343e5fb79a40141f88c (diff) | |
download | ManaVerse-5e8e53f6e795a84ab5ca6cfe0d08672878044707.tar.gz ManaVerse-5e8e53f6e795a84ab5ca6cfe0d08672878044707.tar.bz2 ManaVerse-5e8e53f6e795a84ab5ca6cfe0d08672878044707.tar.xz ManaVerse-5e8e53f6e795a84ab5ca6cfe0d08672878044707.zip |
Convert InventoryType enum into strong typed.
Diffstat (limited to 'src/net/inventoryhandler.h')
-rw-r--r-- | src/net/inventoryhandler.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/net/inventoryhandler.h b/src/net/inventoryhandler.h index a151e39da..c7153ee29 100644 --- a/src/net/inventoryhandler.h +++ b/src/net/inventoryhandler.h @@ -55,13 +55,15 @@ class InventoryHandler notfinal virtual void openStorage(const int type) const = 0; - virtual void closeStorage(const int type) const = 0; + virtual void closeStorage() const = 0; - virtual void moveItem2(const int source, const int slot, + virtual void moveItem2(const InventoryTypeT source, + const int slot, const int amount, - const int destination) const = 0; + const InventoryTypeT destination) const = 0; - virtual size_t getSize(const int type) const A_WARN_UNUSED = 0; + virtual size_t getSize(const InventoryTypeT type) const + A_WARN_UNUSED = 0; virtual Inventory *getStorage() const = 0; |