The new format for representing timeline, province, and season is T-PRO@S. Hopefully this is easier to read than the PRO T:S format.
19 lines
426 B
C#
19 lines
426 B
C#
using MultiversalDiplomacy.Model;
|
|
|
|
namespace MultiversalDiplomacy.Orders;
|
|
|
|
/// <summary>
|
|
/// An order for a unit to support another unit's hold order.
|
|
/// </summary>
|
|
public class SupportHoldOrder : SupportOrder
|
|
{
|
|
public SupportHoldOrder(Power power, Unit unit, Unit target)
|
|
: base (power, unit, target)
|
|
{
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{this.Unit} S {this.Target}";
|
|
}
|
|
} |