[DatFile, Flags] Allow for muliple stat output formats at once

This commit is contained in:
Matt Nadareski
2016-12-05 11:43:48 -08:00
parent bf7fae766e
commit fdb14f5b6a
4 changed files with 234 additions and 200 deletions

View File

@@ -227,6 +227,18 @@ namespace SabreTools.Helper.Data
ALL = 0xFFFF,
}
/// <summary>
/// Determine which format to output Stats to
/// </summary>
/// [Flags]
public enum StatDatFormat
{
None = 0x01,
HTML = 0x02,
CSV = 0x04,
TSV = 0x08,
}
#endregion
#region DatItem related