BizHawk/BizHawk.Client.Common/SharpCompress/Archives/IWritableArchiveEntry.cs

9 lines
145 B
C#

using System.IO;
namespace SharpCompress.Archives
{
internal interface IWritableArchiveEntry
{
Stream Stream { get; }
}
}