Aura.Channel.World.Inventory.InventoryPocketSingle.Remove C# (CSharp) Method

Remove() public method

public Remove ( Item item ) : bool
item Item
return bool
		public override bool Remove(Item item)
		{
			if (_item == item)
			{
				_item = null;
				return true;
			}

			return false;
		}

Same methods

InventoryPocketSingle::Remove ( int itemId, int amount, List &changed ) : int