Ejemplo n.º 1
0
        public static IEnumerable <WoWItem> GetPotionsSortedByPriority(this Inventory bag)
        {
            var potions = bag
                          .GetAllItems()
                          .Where(item => item.IsPotion());

            return(Potions.SortByPriority(potions));
        }