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:
@@ -50,7 +50,7 @@ namespace GameRes.Formats.FC01
|
||||
public override string Description { get { return "F&C Co. multi-frame image format"; } }
|
||||
public override uint Signature { get { return 0x2041434D; } } // 'MCA'
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public override ArcFile TryOpen (ArcView file)
|
||||
{
|
||||
|
||||
@@ -44,7 +44,7 @@ namespace GameRes.Formats.FC01
|
||||
public override string Description { get { return "F&C Co. engine resource archive"; } }
|
||||
public override uint Signature { get { return 0x0047524D; } } // 'MRG'
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public static readonly Tuple<byte[], byte[]> KnownKey = Tuple.Create (
|
||||
// Konata yori Kanata made
|
||||
@@ -180,7 +180,7 @@ namespace GameRes.Formats.FC01
|
||||
public override string Description { get { return "Overture engine resource archive"; } }
|
||||
public override uint Signature { get { return 0x0047524D; } } // 'MRG'
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public Mrg2Opener ()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user