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:
@@ -39,7 +39,7 @@ namespace GameRes.Formats.Bishop
|
||||
public override string Description { get { return "Bishop resource archive"; } }
|
||||
public override uint Signature { get { return 0x72415342; } } // 'BSAr'
|
||||
public override bool IsHierarchic { get { return true; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public override ArcFile TryOpen (ArcView file)
|
||||
{
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace GameRes.Formats.Bishop
|
||||
public override string Description { get { return "Bishop composite image archive"; } }
|
||||
public override uint Signature { get { return 0x2D535342; } } // 'BSS-'
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public BscOpener ()
|
||||
{
|
||||
|
||||
@@ -90,7 +90,7 @@ namespace GameRes.Formats.Bishop
|
||||
|
||||
public override void Write (Stream file, ImageData image)
|
||||
{
|
||||
throw new System.NotImplementedException ("xxxFormat.Write not implemented");
|
||||
throw new System.NotImplementedException ("BsgFormat.Write not implemented");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user