Files
SVSimServer/SVSim.EmulatedEntrypoint/Services/ICardPoolProvider.cs
2026-05-24 02:03:13 -04:00

10 lines
283 B
C#

using SVSim.Database.Models;
namespace SVSim.EmulatedEntrypoint.Services;
/// <summary>Resolves the card pool a pack draws from. Pure function over master data.</summary>
public interface ICardPoolProvider
{
IReadOnlyList<ShadowverseCardEntry> GetPool(PackConfigEntry pack);
}