1
0
mirror of synced 2024-12-01 02:27:22 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Compression/LZ77_WII.cs
KillzXGaming c30f758f8d A few fixes
Fix the UV editor not applying saved UV data.
Start to add basic LM2 dict file support.
Start to add GFA support (todo need BPE compression)
2019-07-02 16:12:23 -04:00

19 lines
413 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Runtime.InteropServices;
using Switch_Toolbox.Library.IO;
namespace Switch_Toolbox.Library
{
public class LZ77_WII
{
public static byte[] Decompress(byte[] input)
{
if (input == null) throw new ArgumentNullException(nameof(input));
return input;
}
}
}