2022-03-24 16:22:13 +00:00
|
|
|
using MultiversalDiplomacy.Orders;
|
|
|
|
|
|
|
|
namespace MultiversalDiplomacy.Adjudicate.Decision;
|
|
|
|
|
|
|
|
public class GivesSupport : BinaryAdjudicationDecision
|
|
|
|
{
|
|
|
|
public SupportOrder Order { get; }
|
|
|
|
public List<MoveOrder> Cuts { get; }
|
|
|
|
|
2022-11-07 05:58:21 +00:00
|
|
|
public override string ToString()
|
|
|
|
=> $"GivesSupport({Order})";
|
|
|
|
|
2022-03-24 16:22:13 +00:00
|
|
|
public GivesSupport(SupportOrder order, IEnumerable<MoveOrder> cuts)
|
|
|
|
{
|
|
|
|
this.Order = order;
|
|
|
|
this.Cuts = cuts.ToList();
|
|
|
|
}
|
|
|
|
}
|