You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
882 B

using System;
using System.Collections.Generic;
using OrderStacks.model.card;
using OrderStacks.model.gameActions.abstractRules;
using OrderStacks.model.piles;
namespace OrderStacks.model.gameActions.extreme
{
public class ExtremeTerminerSonTour : TerminerSonTour
{
public ExtremeTerminerSonTour(Piles ListOrderedStacks) : base(ListOrderedStacks)
{
}
public override bool end(List<Card> CurrentHand, List<Card> CurrentCardPlayed)
{
throw new NotImplementedException();
}
protected override bool testEndGame(List<Card> playableCard, List<Card> CurrentHand)
{
throw new NotImplementedException();
}
protected override void tryToFindSoluce(List<Card> playableCard, List<Card> CurrentHand)
{
throw new NotImplementedException();
}
}
}