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;
        }