Files
SabreTools/SabreTools.DatFiles/Formats/RomCenter.cs

18 lines
446 B
C#
Raw Normal View History

namespace SabreTools.DatFiles.Formats
{
2019-01-11 13:43:15 -08:00
/// <summary>
/// Represents a RomCenter INI file
2019-01-11 13:43:15 -08:00
/// </summary>
internal partial class RomCenter : DatFile
2019-01-11 13:43:15 -08:00
{
/// <summary>
/// Constructor designed for casting a base DatFile
/// </summary>
/// <param name="datFile">Parent DatFile to copy from</param>
public RomCenter(DatFile datFile)
: base(datFile)
2019-01-11 13:43:15 -08:00
{
}
}
}