11 lines
308 B
C#
11 lines
308 B
C#
public partial class DestinationOrder : Order
|
|
{
|
|
public CoordinateVector Destination { get; set; }
|
|
|
|
public DestinationOrder(OrderType type, CoordinateVector destination)
|
|
{
|
|
this.Category = OrderCategory.DESTINATION;
|
|
this.Type = type;
|
|
this.Destination = destination;
|
|
}
|
|
}
|