mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
(IResource.CanWrite): new property.
(ArchiveFormat.CanCreate): renamed to CanWrite.
This commit is contained in:
@@ -63,7 +63,7 @@ namespace GameRes.Formats.Tactics
|
||||
public override string Description { get { return "Tactics archive file"; } }
|
||||
public override uint Signature { get { return 0x54434154; } } // 'TACT'
|
||||
public override bool IsHierarchic { get { return true; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public ArcOpener ()
|
||||
{
|
||||
@@ -332,7 +332,7 @@ namespace GameRes.Formats.Tactics
|
||||
public class Arc2Opener : ArcOpener
|
||||
{
|
||||
public override string Tag { get { return "ARC/Tactics/2"; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public Arc2Opener ()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user