1
0
mirror of synced 2024-11-14 19:17:39 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Compression/LZ77_WII.cs

19 lines
399 B
C#

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