using System; using System.Collections.Generic; using TheGameExtreme.model.card; using TheGameExtreme.model.gameActions.abstractRules; using TheGameExtreme.model.piles; namespace TheGameExtreme.model.gameActions.extreme { public class ExtremeJouerUneCarte : JouerUneCarte { public ExtremeJouerUneCarte(Piles ListOrderedStacks) : base(ListOrderedStacks) { } public override bool play(decimal valueCard, List CurrentHand, int orderedStackSelected, Player player, List CurrentCardPlayed) { throw new NotImplementedException(); } protected override bool Rule(Card card, Stack stack, bool bottomUp, Player player, List CurrentCardPlayed) { throw new NotImplementedException(); } } }