Alexandria.Engines.Sciagi.ResourceDecompressor.ResourceDecompressor C# (CSharp) Метод

ResourceDecompressor() приватный Метод

private ResourceDecompressor ( Stream input, int compressedSize, int uncompressedSize ) : System
input Stream
compressedSize int
uncompressedSize int
Результат 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;
        }