using System; using System.Collections.Generic; using TheGameExtreme.model.card; namespace TheGameExtreme.model.rule.playRules { public abstract class PlayRule : Rule { public PlayRule() { } public abstract bool Test(Card playedCard, Stack stack, bool bottomUp); } }