Assets.Scripts.Services.LootItems.LootItemService.GetAvailableItemCount C# (CSharp) 메소드

GetAvailableItemCount() 공개 메소드

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