1
0
mirror of https://github.com/XLabsProject/img-format-helper.git synced 2023-08-02 15:02:11 +02:00
img-format-helper/ImgFormatHelper/Writer.cs

32 lines
689 B
C#
Raw Permalink Normal View History

2021-04-29 21:55:59 +02:00
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)
{
}
}
}