1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-18 17:26:05 -04:00
OpenDiablo2/OpenDiablo2.Common/Interfaces/IMPQProvider.cs

15 lines
329 B
C#
Raw Normal View History

2018-11-26 19:07:46 -05:00
using System;
2018-11-22 00:18:42 -05:00
using System.Collections.Generic;
using System.IO;
2018-11-26 19:07:46 -05:00
using OpenDiablo2.Common.Models;
2018-11-22 00:18:42 -05:00
namespace OpenDiablo2.Common.Interfaces
{
public interface IMPQProvider
{
IEnumerable<MPQ> GetMPQs();
2018-11-24 17:54:15 -05:00
IEnumerable<String> GetTextFile(string fileName);
2018-11-22 00:18:42 -05:00
Stream GetStream(string fileName);
}
}