diff --git a/OpenRA.Mods.Common/FileFormats/LCWCompression.cs b/OpenRA.Mods.Cnc/FileFormats/LCWCompression.cs similarity index 98% rename from OpenRA.Mods.Common/FileFormats/LCWCompression.cs rename to OpenRA.Mods.Cnc/FileFormats/LCWCompression.cs index b3115f42d5..0fe782485a 100644 --- a/OpenRA.Mods.Common/FileFormats/LCWCompression.cs +++ b/OpenRA.Mods.Cnc/FileFormats/LCWCompression.cs @@ -11,8 +11,9 @@ using System; using System.IO; +using OpenRA.Mods.Common.FileFormats; -namespace OpenRA.Mods.Common.FileFormats +namespace OpenRA.Mods.Cnc.FileFormats { // Lempel - Castle - Welch algorithm (aka Format80) public static class LCWCompression diff --git a/OpenRA.Mods.Cnc/SpriteLoaders/ShpD2Loader.cs b/OpenRA.Mods.Cnc/SpriteLoaders/ShpD2Loader.cs index f9df876880..928f51265c 100644 --- a/OpenRA.Mods.Cnc/SpriteLoaders/ShpD2Loader.cs +++ b/OpenRA.Mods.Cnc/SpriteLoaders/ShpD2Loader.cs @@ -12,6 +12,7 @@ using System; using System.IO; using OpenRA.Graphics; +using OpenRA.Mods.Cnc.FileFormats; using OpenRA.Mods.Common.FileFormats; using OpenRA.Primitives; diff --git a/OpenRA.Mods.Cnc/UtilityCommands/ImportRedAlertLegacyMapCommand.cs b/OpenRA.Mods.Cnc/UtilityCommands/ImportRedAlertLegacyMapCommand.cs index d4cfc66ba5..357d8671cf 100644 --- a/OpenRA.Mods.Cnc/UtilityCommands/ImportRedAlertLegacyMapCommand.cs +++ b/OpenRA.Mods.Cnc/UtilityCommands/ImportRedAlertLegacyMapCommand.cs @@ -14,6 +14,7 @@ using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; +using OpenRA.Mods.Cnc.FileFormats; using OpenRA.Mods.Common.FileFormats; using OpenRA.Mods.Common.UtilityCommands; using OpenRA.Primitives;