1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-17 00:36:10 -04:00
OpenDiablo2/OpenDiablo2.Common/Interfaces/IMPQProvider.cs
2018-11-26 19:07:46 -05:00

15 lines
329 B
C#

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