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;
		}