(ArchiveFormat): added CanCreate virtual property.

This commit is contained in:
morkt 2014-07-26 23:18:50 +04:00
parent c0fa230abb
commit 4cf46ed91c

View File

@ -103,6 +103,8 @@ namespace GameRes
{
public override string Type { get { return "archive"; } }
public virtual bool CanCreate { get { return false; } }
public abstract bool IsHierarchic { get; }
public abstract ArcFile TryOpen (ArcView view);