2022-02-19 00:58:16 +00:00
|
|
|
using MultiversalDiplomacy.Model;
|
|
|
|
|
|
|
|
namespace MultiversalDiplomacy.Orders;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// An order to disband a unit.
|
|
|
|
/// </summary>
|
|
|
|
public class DisbandOrder : UnitOrder
|
|
|
|
{
|
2024-08-15 14:30:43 +00:00
|
|
|
public DisbandOrder(string power, Unit unit)
|
2022-02-19 00:58:16 +00:00
|
|
|
: base (power, unit) {}
|
|
|
|
}
|