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