using System; namespace SabreTools.Library.Reports { /// /// Determine which format to output Stats to /// [Flags] public enum StatReportFormat { /// /// Only output to the console /// None = 0x00, /// /// Console-formatted /// Textfile = 1 << 0, /// /// ClrMamePro HTML /// HTML = 1 << 1, /// /// Comma-Separated Values (Standardized) /// CSV = 1 << 2, /// /// Semicolon-Separated Values (Standardized) /// SSV = 1 << 3, /// /// Tab-Separated Values (Standardized) /// TSV = 1 << 4, All = Int32.MaxValue, } }