Aura.Channel.World.Shops.PersonalShop.GetAllItems C# (CSharp) Метод

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

Returns new list of all items in shop's bag.
public GetAllItems ( ) : List
Результат List
		public List<Item> GetAllItems()
		{
			return this.Owner.Inventory.GetItems(a => a.Info.Pocket == this.Bag.OptionInfo.LinkedPocketId);
		}