14 lines
256 B
C#
14 lines
256 B
C#
|
using MultiversalDiplomacy.Orders;
|
||
|
|
||
|
namespace MultiversalDiplomacy.Adjudicate.Decision;
|
||
|
|
||
|
public class HasPath : BinaryAdjudicationDecision
|
||
|
{
|
||
|
public MoveOrder Order { get; }
|
||
|
|
||
|
public HasPath(MoveOrder order)
|
||
|
{
|
||
|
this.Order = order;
|
||
|
}
|
||
|
}
|