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