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:
@@ -38,7 +38,7 @@ namespace GameRes.Formats.Circus
|
||||
public override string Description { get { return "Circus resource archive"; } }
|
||||
public override uint Signature { get { return 0; } }
|
||||
public override bool IsHierarchic { get { return true; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public DatOpener ()
|
||||
{
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace GameRes.Formats.Circus
|
||||
public override string Description { get { return "Circus resource archive"; } }
|
||||
public override uint Signature { get { return 0; } }
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public PckOpener ()
|
||||
{
|
||||
|
||||
@@ -50,7 +50,7 @@ namespace GameRes.Formats.Circus
|
||||
public override string Description { get { return "Valkyrie Complex resource archive"; } }
|
||||
public override uint Signature { get { return 0x62827582; } } // 'VC'
|
||||
public override bool IsHierarchic { get { return true; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
static readonly byte[] TrialSignature = Encodings.cp932.GetBytes ("VC体験版");
|
||||
static readonly byte[] RetailSignature = Encodings.cp932.GetBytes ("VC製品版");
|
||||
@@ -286,7 +286,7 @@ namespace GameRes.Formats.Circus
|
||||
public override string Description { get { return "Valkyrie Complex resource archive"; } }
|
||||
public override uint Signature { get { return 1; } }
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public VcPacOpener ()
|
||||
{
|
||||
|
||||
@@ -32,7 +32,7 @@ using GameRes.Utility;
|
||||
namespace GameRes.Formats.Circus
|
||||
{
|
||||
[Export(typeof(AudioFormat))]
|
||||
public class PcmAudio : WaveAudio
|
||||
public class PcmAudio : AudioFormat
|
||||
{
|
||||
public override string Tag { get { return "PCM"; } }
|
||||
public override string Description { get { return "Circus PCM audio"; } }
|
||||
|
||||
Reference in New Issue
Block a user