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