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