using DominionBase.Cards; using DominionBase.Players; namespace DominionBase { public interface IBoon : IRandomizable, ITableable { CardBenefit Benefit { get; } void Init(IGame game, PlayerCollection players); bool Receive(IPlayer player); } }