16 lines
385 B
C#
16 lines
385 B
C#
using MultiversalDiplomacy.Orders;
|
|
|
|
namespace MultiversalDiplomacy.Adjudicate.Decision;
|
|
|
|
public class IsDislodged : BinaryAdjudicationDecision
|
|
{
|
|
public UnitOrder Order { get; }
|
|
public List<MoveOrder> Incoming { get; }
|
|
|
|
public IsDislodged(UnitOrder order, IEnumerable<MoveOrder> incoming)
|
|
{
|
|
this.Order = order;
|
|
this.Incoming = incoming.ToList();
|
|
}
|
|
}
|