2019-07-02 22:12:23 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Runtime.InteropServices;
|
2019-07-16 23:35:21 +02:00
|
|
|
|
using Toolbox.Library.IO;
|
2019-07-02 22:12:23 +02:00
|
|
|
|
|
2019-07-16 23:35:21 +02:00
|
|
|
|
namespace Toolbox.Library
|
2019-07-02 22:12:23 +02:00
|
|
|
|
{
|
|
|
|
|
public class LZ77_WII
|
|
|
|
|
{
|
|
|
|
|
public static byte[] Decompress(byte[] input)
|
|
|
|
|
{
|
|
|
|
|
if (input == null) throw new ArgumentNullException(nameof(input));
|
|
|
|
|
return input;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|