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