Added LHA DataFormat (not implemented yet)
This commit is contained in:
parent
713e0eb783
commit
51ce5c18fc
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -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" />
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user