namespace SabreTools.DatFiles.Formats { /// /// Represents a ClrMamePro DAT /// internal partial class ClrMamePro : DatFile { #region Fields /// /// Get whether to assume quote usage on read and write or not /// public bool Quotes { get; set; } = true; #endregion /// /// Constructor designed for casting a base DatFile /// /// Parent DatFile to copy from /// Enable quotes on read and write, false otherwise public ClrMamePro(DatFile datFile, bool quotes) : base(datFile) { Quotes = quotes; } } }