using DominionBase.Enums; namespace DominionBase.Interfaces { public interface IShuffleablePile where T : IDisplayable { CardBack CardBack { get; } int DrawCount { get; } Location Location { get; } T TopDiscard { get; } } }