SunsetHigh.Inventory.removeItem C# (CSharp) Method

removeItem() public method

Removes one item of a given type from this Inventory
public removeItem ( System.Item type ) : void
type System.Item The Item type to remove
return void
        public void removeItem(Item type)
        {
            this.removeItem(type, 1);
        }

Same methods

Inventory::removeItem ( System.Item type, int quantity ) : void