diff --git a/SabreTools.Library/Data/Enums.cs b/SabreTools.Library/Data/Enums.cs deleted file mode 100644 index 88644d70..00000000 --- a/SabreTools.Library/Data/Enums.cs +++ /dev/null @@ -1,35 +0,0 @@ -namespace SabreTools.Library.Data -{ - #region Archival - - /// - /// Compression method based on flag - /// - public enum CompressionMethod : ushort - { - Stored = 0, - Shrunk = 1, - ReducedCompressionFactor1 = 2, - ReducedCompressionFactor2 = 3, - ReducedCompressionFactor3 = 4, - ReducedCompressionFactor4 = 5, - Imploded = 6, - Tokenizing = 7, - Deflated = 8, - Delfate64 = 9, - PKWAREDataCompressionLibrary = 10, - Type11 = 11, // Reserved and unused (SHOULD NOT BE USED) - BZIP2 = 12, - Type13 = 13, // Reserved and unused (SHOULD NOT BE USED) - LZMA = 14, - Type15 = 15, // Reserved and unused (SHOULD NOT BE USED) - Type16 = 16, // Reserved and unused (SHOULD NOT BE USED) - Type17 = 17, // Reserved and unused (SHOULD NOT BE USED) - IBMTERSE = 18, - IBMLZ77 = 19, - WavPak = 97, - PPMdVersionIRev1 = 98, - } - - #endregion -} diff --git a/SabreTools.Library/FileTypes/Enums.cs b/SabreTools.Library/FileTypes/Enums.cs index 7972af23..96b064b1 100644 --- a/SabreTools.Library/FileTypes/Enums.cs +++ b/SabreTools.Library/FileTypes/Enums.cs @@ -50,6 +50,35 @@ #endregion } + /// + /// Compression method based on flag + /// + public enum CompressionMethod : ushort + { + Stored = 0, + Shrunk = 1, + ReducedCompressionFactor1 = 2, + ReducedCompressionFactor2 = 3, + ReducedCompressionFactor3 = 4, + ReducedCompressionFactor4 = 5, + Imploded = 6, + Tokenizing = 7, + Deflated = 8, + Delfate64 = 9, + PKWAREDataCompressionLibrary = 10, + Type11 = 11, // Reserved and unused (SHOULD NOT BE USED) + BZIP2 = 12, + Type13 = 13, // Reserved and unused (SHOULD NOT BE USED) + LZMA = 14, + Type15 = 15, // Reserved and unused (SHOULD NOT BE USED) + Type16 = 16, // Reserved and unused (SHOULD NOT BE USED) + Type17 = 17, // Reserved and unused (SHOULD NOT BE USED) + IBMTERSE = 18, + IBMLZ77 = 19, + WavPak = 97, + PPMdVersionIRev1 = 98, + } + /// /// Type of file that is being looked at ///