ArkaliaCore.Game.Game.Items.ItemStack.Get C# (CSharp) Method

Get() public method

public Get ( int quantity ) : ItemStack
quantity int
return ItemStack
        public ItemStack Get(int quantity)
        {
            if (quantity < this.WItem.Quantity)
            {
                //return new
            }
            else if (quantity == this.WItem.Quantity)
            {
                return this;
            }

            return null;
        }