using MultiversalDiplomacy.Model; namespace MultiversalDiplomacy.Orders; /// /// An order for a dislodged unit to retreat to an adjacent province. /// public class RetreatOrder : UnitOrder { /// /// The destination location to which the unit should retreat. /// public Location Location { get; } public RetreatOrder(string power, Unit unit, Location location) : base (power, unit) { this.Location = location; } }