Move ctor initializers to their own line.
This commit is contained in:
@@ -23,7 +23,8 @@ namespace OpenRA.Mods.Cnc.UtilityCommands
|
||||
class ImportRedAlertLegacyMapCommand : ImportLegacyMapCommand, IUtilityCommand
|
||||
{
|
||||
// TODO: 128x128 is probably not true for "mega maps" from the expansions.
|
||||
public ImportRedAlertLegacyMapCommand() : base(128) { }
|
||||
public ImportRedAlertLegacyMapCommand()
|
||||
: base(128) { }
|
||||
|
||||
string IUtilityCommand.Name { get { return "--import-ra-map"; } }
|
||||
bool IUtilityCommand.ValidateArguments(string[] args) { return ValidateArguments(args); }
|
||||
|
||||
@@ -22,7 +22,8 @@ namespace OpenRA.Mods.Cnc.UtilityCommands
|
||||
class ImportTiberianDawnLegacyMapCommand : ImportLegacyMapCommand, IUtilityCommand
|
||||
{
|
||||
// NOTE: 64x64 map size is a C&C95 engine limitation
|
||||
public ImportTiberianDawnLegacyMapCommand() : base(64) { }
|
||||
public ImportTiberianDawnLegacyMapCommand()
|
||||
: base(64) { }
|
||||
|
||||
string IUtilityCommand.Name { get { return "--import-td-map"; } }
|
||||
bool IUtilityCommand.ValidateArguments(string[] args) { return ValidateArguments(args); }
|
||||
|
||||
Reference in New Issue
Block a user