Move IFolder out of GlobalFileSystem.cs

This commit is contained in:
Pavel Penev
2015-10-09 13:05:59 +03:00
parent 2017a6d989
commit 5684bcec1c
2 changed files with 28 additions and 12 deletions

View File

@@ -17,18 +17,6 @@ using OpenRA.Primitives;
namespace OpenRA.FileSystem
{
public interface IFolder : IDisposable
{
Stream GetContent(string filename);
bool Exists(string filename);
IEnumerable<uint> ClassicHashes();
IEnumerable<uint> CrcHashes();
IEnumerable<string> AllFileNames();
void Write(Dictionary<string, byte[]> contents);
int Priority { get; }
string Name { get; }
}
public static class GlobalFileSystem
{
public static List<IFolder> MountedFolders = new List<IFolder>();