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:
@@ -43,11 +43,11 @@ namespace GameRes.Formats.Majiro
|
||||
[Export(typeof(ArchiveFormat))]
|
||||
public class ArcOpener : ArchiveFormat
|
||||
{
|
||||
public override string Tag { get { return "MAJIRO"; } }
|
||||
public override string Tag { get { return "MAJIRO"; } }
|
||||
public override string Description { get { return "Majiro game engine resource archive"; } }
|
||||
public override uint Signature { get { return 0x696a614d; } } // 'Maji'
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return true; } }
|
||||
public override uint Signature { get { return 0x696a614d; } } // 'Maji'
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanWrite { get { return true; } }
|
||||
|
||||
public ArcOpener ()
|
||||
{
|
||||
|
||||
@@ -63,6 +63,7 @@ namespace GameRes.Formats.Majiro
|
||||
public override string Tag { get { return "RCT"; } }
|
||||
public override string Description { get { return "Majiro game engine RGB image format"; } }
|
||||
public override uint Signature { get { return 0x9a925a98; } }
|
||||
public override bool CanWrite { get { return true; } }
|
||||
|
||||
public bool OverlayFrames = true;
|
||||
public bool ApplyMask = true;
|
||||
|
||||
Reference in New Issue
Block a user