namespace LittleTown.Core.Actions;
///
/// Action qui consiste a poser un pion sur le une case du plateau
///
public class FieldAction : IAction
{
/// >
public void Execute(Match match)
{
throw new NotImplementedException();
}
/// >
public bool CanExecute(Match match)
{
return true;
}
}