using System; using System.Collections.Generic; using TheGameExtreme.model.card; namespace TheGameExtreme.model.rule.endRule { public class VoidDeck : EndTurnRule { public VoidDeck() { } public override bool Test(List CurrentCardPlayed, int nbCardAtBeginOfTurn, List CurrentHand) { throw new NotImplementedException(); } } }