mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
18 lines
447 B
C#
18 lines
447 B
C#
namespace SabreTools.DatFiles.Formats
|
|
{
|
|
/// <summary>
|
|
/// Represents a RomCenter INI file
|
|
/// </summary>
|
|
internal partial class RomCenter : DatFile
|
|
{
|
|
/// <summary>
|
|
/// Constructor designed for casting a base DatFile
|
|
/// </summary>
|
|
/// <param name="datFile">Parent DatFile to copy from</param>
|
|
public RomCenter(DatFile? datFile)
|
|
: base(datFile)
|
|
{
|
|
}
|
|
}
|
|
}
|