16 lines
377 B
C#
16 lines
377 B
C#
|
using MultiversalDiplomacy.Orders;
|
||
|
|
||
|
namespace MultiversalDiplomacy.Adjudicate.Decision;
|
||
|
|
||
|
public class GivesSupport : BinaryAdjudicationDecision
|
||
|
{
|
||
|
public SupportOrder Order { get; }
|
||
|
public List<MoveOrder> Cuts { get; }
|
||
|
|
||
|
public GivesSupport(SupportOrder order, IEnumerable<MoveOrder> cuts)
|
||
|
{
|
||
|
this.Order = order;
|
||
|
this.Cuts = cuts.ToList();
|
||
|
}
|
||
|
}
|