using OpenDiablo2.Common.Models; using System; using System.Collections.Generic; using System.IO; namespace OpenDiablo2.Common.Interfaces { public interface IMPQProvider { IEnumerable GetMPQs(); IEnumerable> GetTextFile(string fileName); Stream GetStream(string fileName); } }