5dplomacy/MultiversalDiplomacy/Orders/MoveOrder.cs

27 lines
654 B
C#
Raw Normal View History

2022-02-19 00:58:16 +00:00
using MultiversalDiplomacy.Model;
namespace MultiversalDiplomacy.Orders;
/// <summary>
/// An order for a unit to move to another province.
/// </summary>
public class MoveOrder : UnitOrder
{
/// <summary>
/// The destination season to which the unit should move.
/// </summary>
public Season Season { get; }
/// <summary>
/// The destination location to which the unit should move.
/// </summary>
public Location Location { get; }
public MoveOrder(Power power, Unit unit, Season season, Location location)
: base (power, unit)
{
this.Season = season;
this.Location = location;
}
}