mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-23 04:53:09 +00:00
18 lines
399 B
C#
18 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;
|
|
}
|
|
}
|
|
}
|