using System; using System.Collections.Generic; using System.IO; namespace BizHawk.Common { /// public interface IHawkArchiveFile : IDisposable { void ExtractFile(int index, Stream stream); List Scan(); } }