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:
@@ -40,7 +40,7 @@ namespace GameRes.Formats.Ags
|
||||
public override string Description { get { return "AnimeGameSystem resource archive"; } }
|
||||
public override uint Signature { get { return 0x6B636170; } } // 'pack'
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public DatOpener ()
|
||||
{
|
||||
|
||||
@@ -30,7 +30,7 @@ using System.IO;
|
||||
namespace GameRes.Formats.Ags
|
||||
{
|
||||
[Export(typeof(AudioFormat))]
|
||||
public class PcmAudio : WaveAudio
|
||||
public class PcmAudio : AudioFormat
|
||||
{
|
||||
public override string Tag { get { return "PCM/AGS"; } }
|
||||
public override string Description { get { return "AnimeGameSystem PCM audio"; } }
|
||||
|
||||
@@ -56,7 +56,7 @@ namespace GameRes.Formats.Ags
|
||||
public override string Description { get { return "Anime Game System animation resource"; } }
|
||||
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 override ArcFile TryOpen (ArcView file)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user