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.CatSystem
|
||||
public override string Description { get { return "CatSystem2 engine multi-image"; } }
|
||||
public override uint Signature { get { return 0x322d4748; } } // 'HG-2'
|
||||
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)
|
||||
{
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace GameRes.Formats.CatSystem
|
||||
public override string Description { get { return "CatSystem2 engine multi-image"; } }
|
||||
public override uint Signature { get { return 0x332d4748; } } // 'HG-3'
|
||||
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)
|
||||
{
|
||||
|
||||
@@ -113,11 +113,11 @@ namespace GameRes.Formats.CatSystem
|
||||
[Export(typeof(ArchiveFormat))]
|
||||
public class IntOpener : ArchiveFormat
|
||||
{
|
||||
public override string Tag { get { return "INT"; } }
|
||||
public override string Tag { get { return "INT"; } }
|
||||
public override string Description { get { return arcStrings.INTDescription; } }
|
||||
public override uint Signature { get { return 0x0046494b; } }
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return true; } }
|
||||
public override uint Signature { get { return 0x0046494b; } } // 'KIF'
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanWrite { get { return true; } }
|
||||
|
||||
static readonly byte[] NameSizes = { 0x20, 0x40 };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user