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.

17 lines
443 B

using System.Collections.Generic;
using OrderStacks.model.card;
using OrderStacks.model.deck;
using OrderStacks.model.piles;
namespace OrderStacks.model.gameActions.abstractRules
{
public abstract class Piocher : GameAction
{
public Piocher(Piles ListOrderedStacks) : base(ListOrderedStacks)
{
}
public abstract void pioche(List<Card> CurrentHand, Deck deck, Player player, int nbMaxCard);
}
}