Aura.Channel.World.Inventory.InventoryPocketSingle.Add C# (CSharp) Метод

Add() публичный Метод

public Add ( Item item ) : bool
item Item
Результат bool
		public override bool Add(Item item)
		{
			if (_item != null)
				return false;

			this.AddUnsafe(item);
			return true;
		}