[Structs] Add new structs for future use

This commit is contained in:
Matt Nadareski
2016-08-29 14:43:31 -07:00
parent 5bea65e9a3
commit a5dae7e693
5 changed files with 135 additions and 19 deletions

View File

@@ -542,7 +542,7 @@ namespace SabreTools.Helper
{
Name = gamename,
},
HashData = new HashData
HashData = new Hash
{
Size = (size == 0 ? reader.Entry.Size : size),
CRC = (crc == "" ? reader.Entry.Crc.ToString("X").ToLowerInvariant() : crc),
@@ -626,7 +626,7 @@ namespace SabreTools.Helper
Name = Path.GetFileNameWithoutExtension(input).ToLowerInvariant(),
},
Name = Path.GetFileNameWithoutExtension(input).ToLowerInvariant(),
HashData = new HashData
HashData = new Hash
{
Size = extractedsize,
CRC = gzcrc.ToLowerInvariant(),