Aura.Channel.World.Inventory.BankInventory.GetAllItems C# (CSharp) Method

GetAllItems() public method

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