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:
@@ -37,7 +37,7 @@ namespace GameRes.Formats.FVP
|
||||
public override string Description { get { return "Favorite View Point 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; } }
|
||||
|
||||
public Bin2Opener ()
|
||||
{
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace GameRes.Formats.FVP
|
||||
public override string Description { get { return "Favorite View Point resource archive"; } }
|
||||
public override uint Signature { get { return 0x58504341; } } // "ACPX"
|
||||
public override bool IsHierarchic { get { return true; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public BinOpener ()
|
||||
{
|
||||
|
||||
@@ -50,7 +50,7 @@ namespace GameRes.Formats.FVP
|
||||
public override string Description { get { return "Favorite View Point multi-frame image"; } }
|
||||
public override uint Signature { get { return 0x31637A68; } } // 'HZC1'
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public HzcOpener ()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user