mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-07 18:57:18 -05:00
15 lines
342 B
C#
15 lines
342 B
C#
|
using OpenDiablo2.Common.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace OpenDiablo2.Common.Interfaces
|
|||
|
{
|
|||
|
public interface IMPQProvider
|
|||
|
{
|
|||
|
IEnumerable<MPQ> GetMPQs();
|
|||
|
IEnumerable<IEnumerable<String>> GetTextFile(string fileName);
|
|||
|
Stream GetStream(string fileName);
|
|||
|
}
|
|||
|
}
|