using MultiversalDiplomacy.Model; namespace MultiversalDiplomacy.Orders; /// /// An order for a unit to support another unit's move order. /// public class SupportMoveOrder : UnitOrder { /// /// The unit to support. /// public Unit Target { get; } /// /// The destination season to which the target is moving. /// public Season Season { get; } /// /// The destination location to which the target is moving. /// public Location Location { get; } public SupportMoveOrder(Power power, Unit unit, Unit target, Season season, Location location) : base (power, unit) { this.Target = target; this.Season = season; this.Location = location; } }