Ejemplo n.º 1
0
        /// <summary>
        /// Gets a stream of the content of the file.
        /// </summary>
        /// <returns>An instance of the <see cref="MpqStream"/> class.</returns>
        public MpqStream GetStream()
        {
            if (stream == null)
                stream = new MpqStream(this, fileHandle);

            return stream;
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Gets a stream of the content of the file.
        /// </summary>
        /// <returns>An instance of the <see cref="MpqStream"/> class.</returns>
        public MpqStream GetStream()
        {
            if (stream == null)
            {
                stream = new MpqStream(this, fileHandle);
            }

            return(stream);
        }