mirror of
https://github.com/XLabsProject/img-format-helper.git
synced 2023-08-02 15:02:11 +02:00
32 lines
689 B
C#
32 lines
689 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IWImgViewer
|
|
{
|
|
public static class Writer
|
|
{
|
|
public static void WriteIWI3(IImageFileHeader header, byte[] data, string outputPath)
|
|
{
|
|
|
|
}
|
|
|
|
public static void WriteIWI4(IImageFileHeader header, byte[] data, string outputPath)
|
|
{
|
|
|
|
}
|
|
|
|
public static void WriteFFImg(IImageFileHeader header, byte[] data, string outputPath)
|
|
{
|
|
|
|
}
|
|
|
|
public static void WriteIW4xImage(IImageFileHeader header, byte[] data, string outputPath)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|