Assets.Scripts.Services.LootItems.LootItemService.GetAvailableItemCount C# (CSharp) Method

GetAvailableItemCount() public method

public GetAvailableItemCount ( Predicate match ) : int
match Predicate
return int
        public int GetAvailableItemCount(Predicate<LootItem> match)
        {
            return lootItems.FindAll(match).Count;
        }
    }