Added LHA DataFormat (not implemented yet)

This commit is contained in:
Michael Becker 2014-06-18 20:51:57 -04:00
parent 713e0eb783
commit 51ce5c18fc
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UniversalEditor.DataFormats.FileSystem.LHA
{
public class LZHDataFormat : DataFormat
{
protected override void LoadInternal(ref ObjectModel objectModel)
{
throw new NotImplementedException();
}
protected override void SaveInternal(ObjectModel objectModel)
{
throw new NotImplementedException();
}
}
}

View File

@ -101,6 +101,7 @@
<Compile Include="DataFormats\FileSystem\ISO\ISOVolumeDescriptorType.cs" />
<Compile Include="DataFormats\FileSystem\JackOrlando\JackOrlandoDataFormat.cs" />
<Compile Include="DataFormats\FileSystem\JadeEmpire\RIMDataFormat.cs" />
<Compile Include="DataFormats\FileSystem\LHA\LZHDataFormat.cs" />
<Compile Include="DataFormats\FileSystem\MementoMori\RESCompressionType.cs" />
<Compile Include="DataFormats\FileSystem\MementoMori\RESDataFormat.cs" />
<Compile Include="DataFormats\FileSystem\MFD\MFDDataFormat.cs" />