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 {