initial commit

This commit is contained in:
what 2021-07-26 13:04:16 -07:00
commit 1b60743303
274 changed files with 25866 additions and 0 deletions

View file

@ -0,0 +1,27 @@
// Decompiled with JetBrains decompiler
// Type: GDRomExplorer.ImageFileFormat.ISO9660.ISO9660ImageFormat
// Assembly: ISO9660, Version=1.0.0.0, Culture=neutral, PublicKeyToken=611be24fdeb07e08
// MVID: 05C13092-F2D8-4D43-9750-90851EBE12FD
// Assembly location: Formats\ISO9660.dll
using ImageReader.DiscSectors;
using SEGATools.DiscFileSystem;
using SEGATools.FileFormat;
namespace GDRomExplorer.ImageFileFormat.ISO9660
{
internal class ISO9660ImageFormat : AbstractImageFileFormat
{
public override string[] FileExtentions => new string[1]
{
".iso"
};
public override string[] FileExtentionDescriptions => new string[1]
{
"ISO9660 image file"
};
public override IDiscFileSystemConverter ImageFileConverter => (IDiscFileSystemConverter) new GenericImageConverter((IDiscSector) new ISO9660Sector());
}
}