using System.Collections.Generic; using System.Threading.Tasks; namespace WingsEmu.Game.Managers.ServerData; public interface IRecipeManager { Task InitializeAsync(); IReadOnlyList GetRecipesByProducerItemVnum(int itemVnum); IReadOnlyList GetRecipesByNpcId(long mapNpcId); IReadOnlyList GetRecipesByNpcMonsterVnum(int npcVNum); IReadOnlyList GetRecipeByProducedItemVnum(int itemVnum); }