Aura.Channel.World.Inventory.InventoryPocketSingle.Add C# (CSharp) Méthode

Add() public méthode

public Add ( Item item ) : bool
item Item
Résultat bool
		public override bool Add(Item item)
		{
			if (_item != null)
				return false;

			this.AddUnsafe(item);
			return true;
		}