diff options
Diffstat (limited to 'src/net/inventoryhandler.h')
-rw-r--r-- | src/net/inventoryhandler.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/inventoryhandler.h b/src/net/inventoryhandler.h index 19060797..08caf926 100644 --- a/src/net/inventoryhandler.h +++ b/src/net/inventoryhandler.h @@ -59,6 +59,10 @@ class InventoryHandler virtual void moveItem(StorageType source, int slot, int amount, StorageType destination) = 0; + + virtual size_t getInventorySize() const = 0; + + virtual size_t getStorageSize() const = 0; }; } // namespace Net |