Alexandria.Engines.Sciagi.ResourceDecompressor.ResourceDecompressor C# (CSharp) Method

ResourceDecompressor() private method

private ResourceDecompressor ( Stream input, int compressedSize, int uncompressedSize ) : System
input Stream
compressedSize int
uncompressedSize int
return System
        internal ResourceDecompressor(Stream input, int compressedSize, int uncompressedSize)
        {
            Input = new BitStream(input);
            CompressedSize = compressedSize;
            UncompressedSize = uncompressedSize;
            OutputData = new byte[uncompressedSize];
            InputEnd = input.Position + compressedSize;
            OutputOffset = 0;
        }