pkNX/pkNX.Containers/Misc/LZ4.cs
Kurt 2578ba073c Refactoring
File scoped namespaces for all lib projects
netstandard2.0 => net6; now uniform. bye netframework!
2022-10-01 17:08:17 -07:00

10 lines
268 B
C#

using LZ4;
namespace pkNX.Containers;
public static class LZ4
{
public static byte[] Decode(byte[] data, int decLength) => LZ4Codec.Decode(data, 0, data.Length, decLength);
public static byte[] Encode(byte[] data) => LZ4Codec.Encode(data, 0, data.Length);
}