mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-22 01:27:49 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
10 lines
268 B
C#
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);
|
|
}
|