namespace SabreTools.DatFiles.Formats
{
///
/// Represents a RomCenter INI file
///
internal partial class RomCenter : DatFile
{
///
/// Constructor designed for casting a base DatFile
///
/// Parent DatFile to copy from
public RomCenter(DatFile? datFile)
: base(datFile)
{
}
}
}