using MultiversalDiplomacy.Model;
namespace MultiversalDiplomacy.Orders;
///
/// An order for a unit to support another unit's hold order.
///
public class SupportHoldOrder : UnitOrder
{
///
/// The unit to support.
///
public Unit Target { get; }
public SupportHoldOrder(Power power, Unit unit, Unit target)
: base (power, unit)
{
this.Target = target;
}
}