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.
45 lines
1.4 KiB
45 lines
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using TheGameExtreme.model.card;
|
|
using TheGameExtreme.model.deck;
|
|
using TheGameExtreme.model.gameActions.abstractRules;
|
|
using TheGameExtreme.model.piles;
|
|
|
|
namespace TheGameExtreme.model.gameActions.extreme
|
|
{
|
|
public class ExtremeMode : GameMode
|
|
{
|
|
public ExtremeMode(Piles piles, Deck deck) : base(piles, deck)
|
|
{
|
|
gameActions.Add(new ExtremePiocher(Piles));
|
|
gameActions.Add(new ExtremeJouerUneCarte(Piles));
|
|
gameActions.Add(new ExtremeTerminerSonTour(Piles));
|
|
}
|
|
|
|
public override bool endTurn(List<Card> currentHand, List<Card> CurrentCardPlayed, Player player)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void load(int nbPlayer, List<Player> players)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void pioche(List<Card> currentHand, Player player)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override bool playCard(decimal valueCard, List<Card> currentHand, int orderedStackSelected, Player player, List<Card> CurrentCardPlayed)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void TestEndGame(List<Card> currentHand)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|