Aura.Channel.World.Inventory.InventoryPocketStack.TryAdd C# (CSharp) Method

TryAdd() public method

public TryAdd ( Item item, byte targetX, byte targetY, Item &colliding ) : bool
item Item
targetX byte
targetY byte
colliding Item
return bool
		public override bool TryAdd(Item item, byte targetX, byte targetY, out Item colliding)
		{
			colliding = null;
			_items.Add(item);
			return true;
		}