Abstract class with public constructor

This commit is contained in:
Eduardo Cáceres
2022-05-02 13:18:24 +02:00
committed by atlimit8
parent 1b69ff017d
commit c0d270b87d

View File

@@ -27,7 +27,7 @@ namespace OpenRA.Mods.Common.UtilityCommands
{ {
public readonly int MapSize; public readonly int MapSize;
public ImportLegacyMapCommand(int mapSize) protected ImportLegacyMapCommand(int mapSize)
{ {
MapSize = mapSize; MapSize = mapSize;
} }