19 lines
413 B
C#
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|