using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UniversalEditor.Compression.LZH { public class LZHStream { public static byte[] Compress(byte[] input) { return input; } public static byte[] Decompress(byte[] input) { return input; } } }