server-master/srcs/WingsAPI.Game/Managers/ServerData/IRecipeManager.cs
2026-02-10 18:21:30 +01:00

17 lines
No EOL
444 B
C#

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