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:
@@ -54,7 +54,7 @@ namespace GameRes.Formats.Palette
|
||||
public override string Description { get { return "Palette multi-frame PNG archive"; } }
|
||||
public override uint Signature { get { return 0x72616863; } } // 'char'
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public ChrOpener ()
|
||||
{
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace GameRes.Formats.Palette
|
||||
public override string Description { get { return "Palette resource archive"; } }
|
||||
public override uint Signature { get { return 0x43415005; } } // '\x05PAC'
|
||||
public override bool IsHierarchic { get { return true; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public PakOpener ()
|
||||
{
|
||||
|
||||
@@ -34,6 +34,7 @@ namespace GameRes.Formats.Palette
|
||||
public override string Tag { get { return "PGA"; } }
|
||||
public override string Description { get { return "Palette obfuscated PNG image"; } }
|
||||
public override uint Signature { get { return 0x50414750; } } // 'PGAP'
|
||||
public override bool CanWrite { get { return true; } }
|
||||
|
||||
public override ImageMetaData ReadMetaData (Stream stream)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user