namespace SabreTools.DatFiles.Formats
{
///
/// Represents a Logiqx-derived DAT
///
internal partial class Logiqx : DatFile
{
// Private instance variables specific to Logiqx DATs
private readonly bool _deprecated;
///
/// DTD for original Logiqx DATs
///
/// This has been edited to reflect actual current standards
private const string LogiqxDTD = @"
";
///
/// XSD for No-Intro Logiqx-derived DATs
///
private const string NoIntroXSD = @"
";
///
/// Constructor designed for casting a base DatFile
///
/// Parent DatFile to copy from
/// True if the output uses "game", false if the output uses "machine"
public Logiqx(DatFile? datFile, bool deprecated)
: base(datFile)
{
_deprecated = deprecated;
}
}
}