Move ShpTDLoader, LZO and XORDelta formats to Mods.Cnc

They're pretty much RA/TD-specific formats.
This commit is contained in:
reaperrr
2019-12-01 17:17:36 +01:00
committed by Paul Chote
parent cd123830c3
commit 4751b1a176
6 changed files with 9 additions and 5 deletions

View File

@@ -67,7 +67,7 @@
using System;
namespace OpenRA.Mods.Common.FileFormats
namespace OpenRA.Mods.Cnc.FileFormats
{
public static class LZOCompression
{

View File

@@ -9,7 +9,9 @@
*/
#endregion
namespace OpenRA.Mods.Common.FileFormats
using OpenRA.Mods.Common.FileFormats;
namespace OpenRA.Mods.Cnc.FileFormats
{
// Data that is to be XORed against another set of data (aka Format40)
public static class XORDeltaCompression

View File

@@ -14,10 +14,11 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using OpenRA.Graphics;
using OpenRA.Mods.Cnc.FileFormats;
using OpenRA.Mods.Common.FileFormats;
using OpenRA.Primitives;
namespace OpenRA.Mods.Common.SpriteLoaders
namespace OpenRA.Mods.Cnc.SpriteLoaders
{
public class ShpTDLoader : ISpriteLoader
{

View File

@@ -14,7 +14,7 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using OpenRA.FileFormats;
using OpenRA.Mods.Common.SpriteLoaders;
using OpenRA.Mods.Cnc.SpriteLoaders;
using OpenRA.Primitives;
namespace OpenRA.Mods.Cnc.UtilityCommands

View File

@@ -14,6 +14,7 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using OpenRA.FileSystem;
using OpenRA.Mods.Cnc.FileFormats;
using OpenRA.Mods.Common;
using OpenRA.Mods.Common.FileFormats;
using OpenRA.Mods.Common.Traits;

View File

@@ -14,7 +14,7 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using OpenRA.Graphics;
using OpenRA.Mods.Common.SpriteLoaders;
using OpenRA.Mods.Cnc.SpriteLoaders;
using OpenRA.Primitives;
using OpenRA.Traits;