using System; using System.Collections.Generic; using TheGameExtreme.model.card; namespace TheGameExtreme.model.rule.endTurnRules { public class VoidDeck : EndTurnRule { public static readonly String REGLE_VOIDDECK = "Void Deck"; public override bool Test(List CurrentCardPlayed, int nbCardAtBeginOfTurn, List CurrentHand) { throw new NotImplementedException(); } } }