(IResource.CanWrite): new property.

(ArchiveFormat.CanCreate): renamed to CanWrite.
This commit is contained in:
morkt
2016-10-11 00:05:22 +04:00
parent 3c5a61d580
commit f1d66206bc
248 changed files with 323 additions and 279 deletions

View File

@@ -39,7 +39,7 @@ namespace GameRes.Formats.Eushully
public override string Description { get { return "Eushully resource archive"; } }
public override uint Signature { get { return 0; } }
public override bool IsHierarchic { get { return false; } }
public override bool CanCreate { get { return false; } }
public override bool CanWrite { get { return false; } }
static string[] IndexNames = new string[] { "sys4ini.bin", "sys3ini.bin" };

View File

@@ -34,7 +34,7 @@ namespace GameRes.Formats.Eushully
{
public override uint Signature { get { return 0; } }
public override bool IsHierarchic { get { return false; } }
public override bool CanCreate { get { return false; } }
public override bool CanWrite { get { return false; } }
protected ArcFile TryOpenWithIndex (ArcView file, string entry_type, string entry_ext = "")
{