idle-starship/scripts/DestinationOrder.cs
2025-09-12 08:34:06 -04:00

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;
}
}