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:
@@ -36,11 +36,11 @@ namespace GameRes.Formats.Liar
|
||||
[Export(typeof(ArchiveFormat))]
|
||||
public class XflOpener : ArchiveFormat
|
||||
{
|
||||
public override string Tag { get { return "XFL"; } }
|
||||
public override string Tag { get { return "XFL"; } }
|
||||
public override string Description { get { return Strings.arcStrings.XFLDescription; } }
|
||||
public override uint Signature { get { return 0x0001424c; } }
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return true; } }
|
||||
public override uint Signature { get { return 0x0001424c; } }
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanWrite { get { return true; } }
|
||||
|
||||
public override ArcFile TryOpen (ArcView file)
|
||||
{
|
||||
|
||||
@@ -40,6 +40,7 @@ namespace GameRes.Formats.Liar
|
||||
public override string Tag { get { return "WCG"; } }
|
||||
public override string Description { get { return "Liar-soft proprietary image format"; } }
|
||||
public override uint Signature { get { return 0x02714757; } }
|
||||
public override bool CanWrite { get { return true; } }
|
||||
|
||||
public WcgFormat ()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user