using MultiversalDiplomacy.Model; namespace MultiversalDiplomacy.Orders; /// /// An order for a unit to support another unit's move order. /// public class SupportMoveOrder : SupportOrder { /// /// 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, target) { this.Season = season; this.Location = location; } }