using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SabreTools.Helper { /// /// Possible DAT import classes /// public enum DatType { none = 0, Custom, MAME, NoIntro, Redump, TOSEC, TruRip, NonGood, MaybeIntro, } /// /// Possible detected header type /// public enum HeaderType { None = 0, A7800, FDS, Lynx, //N64, NES, PCE, SNES, } /// /// Severity of the logging statement /// public enum LogLevel { VERBOSE = 0, WARNING, ERROR, } }