using DominionBase.Cards; using DominionBase.Players; namespace DominionBase { public interface ITakeable : IRandomizable, ITableable, IPoints { bool CanBeMultiples { get; } void ReturnedBy(IPlayer player); void TakenBy(IPlayer player); } }