using Core.Models.Eft.Common.Tables; namespace Core.Services; public class RagfairLinkedItemService { public HashSet GetLinkedItems(string linkedSearchId) { throw new NotImplementedException(); } /// /// Use ragfair linked item service to get an array of items that can fit on or in designated itemtpl /// /// Item to get sub-items for /// TemplateItem array public List GetLinkedDbItems(string itemTpl) { throw new NotImplementedException(); } /// /// Create Dictionary of every item and the items associated with it /// protected void BuildLinkedItemTable() { throw new NotImplementedException(); } /// /// Add ammo to revolvers linked item dictionary /// /// Revolvers cylinder /// protected void AddRevolverCylinderAmmoToLinkedItems( TemplateItem cylinder, Action> applyLinkedItems) { throw new NotImplementedException(); } /// /// Scans a given slot type for filters and returns them as a List /// /// /// /// List of ids protected List GetFilters(TemplateItem item, string slot) { throw new NotImplementedException(); } }