Aura.Channel.World.Inventory.BankInventory.GetAllItems C# (CSharp) 메소드

GetAllItems() 공개 메소드

Returns all items in the bank.
public GetAllItems ( ) : IList
리턴 IList
		public IList<Item> GetAllItems()
		{
			return Tabs.Values.SelectMany(t => t.GetItemList()).ToList();
		}