Interface IBankInventory

All Superinterfaces:
IItems<IBankInventoryItem>, ItemProvider<IBankInventoryItem>

public interface IBankInventory extends IItems<IBankInventoryItem>
Represents the player's inventory as visible within the bank interface.

This interface provides access to inventory items that can be deposited into the bank. It extends IItems to provide standard item container query capabilities, with items represented as IBankInventoryItem to support deposit operations.

Use this interface to:

  • Query items in the inventory while the bank is open
  • Find items to deposit into the bank
  • Deposit specific items using the IBankInventoryItem.deposit(int) method

Note: This interface is only accessible when the bank interface is open. For general inventory access, use IInventory instead.

See Also: