Move LCWCompression support to Mods.Cnc

This commit is contained in:
reaperrr
2019-12-09 01:57:06 +01:00
committed by teinarss
parent c687600d66
commit d835090d0b
3 changed files with 4 additions and 1 deletions

View File

@@ -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

View File

@@ -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;

View File

@@ -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;