Move ctor initializers to their own line.

This commit is contained in:
Paul Chote
2019-06-08 12:59:02 +01:00
committed by reaperrr
parent 979ed1b140
commit 674155a8dd
33 changed files with 90 additions and 44 deletions

View File

@@ -69,7 +69,8 @@ namespace OpenRA.Mods.Common.Orders
public class PowerDownOrderGenerator : GlobalButtonOrderGenerator<ToggleConditionOnOrder>
{
public PowerDownOrderGenerator() : base("PowerDown") { }
public PowerDownOrderGenerator()
: base("PowerDown") { }
protected override bool IsValidTrait(ToggleConditionOnOrder t)
{
@@ -85,7 +86,8 @@ namespace OpenRA.Mods.Common.Orders
public class SellOrderGenerator : GlobalButtonOrderGenerator<Sellable>
{
public SellOrderGenerator() : base("Sell") { }
public SellOrderGenerator()
: base("Sell") { }
protected override string GetCursor(World world, CPos cell, int2 worldPixel, MouseInput mi)
{