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