From 0abbadd97bf87542fa456d48790e16304b8f421b Mon Sep 17 00:00:00 2001 From: morkt Date: Tue, 2 Jan 2018 06:34:50 +0400 Subject: [PATCH] (PackedStream): added Reader property. --- ArcFormats/PackedStream.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ArcFormats/PackedStream.cs b/ArcFormats/PackedStream.cs index 7286f499..629b309b 100644 --- a/ArcFormats/PackedStream.cs +++ b/ArcFormats/PackedStream.cs @@ -2,6 +2,8 @@ //! \date 2017 Dec 31 //! \brief Generic class representing compressed stream. // +// Copyright (C) 2017-2018 by morkt +// // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the @@ -104,6 +106,8 @@ namespace GameRes.Compression m_reader.Initialize (input); } + protected TDecompressor Reader { get { return m_reader; } } + public override bool CanSeek { get { return false; } } public override long Length {