Aura.Channel.World.Shops.PersonalShop.GetAllItems C# (CSharp) Méthode

GetAllItems() public méthode

Returns new list of all items in shop's bag.
public GetAllItems ( ) : List
Résultat List
		public List<Item> GetAllItems()
		{
			return this.Owner.Inventory.GetItems(a => a.Info.Pocket == this.Bag.OptionInfo.LinkedPocketId);
		}