virtual file system preliminary implementation.

This commit is contained in:
morkt
2015-08-31 10:48:27 +04:00
parent 47b3d6adf0
commit 9d1d320cd2
19 changed files with 352 additions and 350 deletions

View File

@@ -261,6 +261,12 @@ namespace GameRes
public ResourceOptions Options { get; set; }
}
public class OverwriteEventArgs : EventArgs
{
public string Filename { get; set; }
public bool Overwrite { get; set; }
}
public sealed class FormatCatalog
{
private static readonly FormatCatalog m_instance = new FormatCatalog();