IInventoryListener

C++
struct IInventoryListener {
};
File

IItemSystem.h

IInventoryListener::~IInventoryListener Destructor
C++
virtual ~IInventoryListener();
IInventoryListener::OnAddAccessory Method
C++
virtual void OnAddAccessory(IEntityClass* pAccessoryClass) = 0;
IInventoryListener::OnAddItem Method
C++
virtual void OnAddItem(EntityId entityId) = 0;
IInventoryListener::OnClearInventory Method
C++
virtual void OnClearInventory() = 0;
IInventoryListener::OnSetAmmoCount Method
C++
virtual void OnSetAmmoCount(IEntityClass* pAmmoType, int count) = 0;