server-master/srcs/WingsAPI.Game/Algorithm/IShellGenerationAlgorithm.cs
2026-02-10 18:21:30 +01:00

15 lines
No EOL
435 B
C#

using System.Collections.Generic;
using WingsEmu.DTOs.Items;
namespace WingsEmu.Game.Algorithm;
public interface IShellGenerationAlgorithm
{
/// <summary>
/// </summary>
/// <param name="shellType"></param>
/// <param name="shellRarity"></param>
/// <param name="shellLevel"></param>
/// <returns></returns>
IEnumerable<EquipmentOptionDTO> GenerateShell(byte shellType, int shellRarity, int shellLevel);
}