Move DedupeType to better namespace

This commit is contained in:
Matt Nadareski
2020-12-14 11:16:48 -08:00
parent 1690308894
commit 7ab5a64d4d
5 changed files with 23 additions and 22 deletions

View File

@@ -159,4 +159,25 @@ namespace SabreTools.DatFiles
// Specialty combinations
ALL = Int32.MaxValue,
}
/// <summary>
/// Determines the DAT deduplication type
/// </summary>
public enum DedupeType
{
None = 0,
Full,
// Force only deduping with certain types
Game,
CRC,
MD5,
#if NET_FRAMEWORK
RIPEMD160,
#endif
SHA1,
SHA256,
SHA384,
SHA512,
}
}