using MultiversalDiplomacy.Model;
namespace MultiversalDiplomacy.Orders;
///
/// An order to build a unit.
///
public class BuildOrder : Order
{
///
/// The location in which to build the unit.
///
public Location Location { get; }
///
/// The type of unit to build.
///
public UnitType Type { get; }
public BuildOrder(Power power, Location location, UnitType type)
: base (power)
{
this.Location = location;
this.Type = type;
}
}