mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 13:45:34 +08:00
(YGA): added "epf" extension.
This commit is contained in:
parent
b139f52a37
commit
fad84a06fa
@ -43,6 +43,12 @@ namespace GameRes.Formats.Yaneurao
|
||||
public override string Description { get { return "Yaneurao image format"; } }
|
||||
public override uint Signature { get { return 0x616779; } } // 'yga'
|
||||
|
||||
public YgaFormat ()
|
||||
{
|
||||
Extensions = new string[] { "yga", "epf" };
|
||||
Signatures = new uint[] { 0x616779, 0x667065 }; // 'epf'
|
||||
}
|
||||
|
||||
public override ImageMetaData ReadMetaData (IBinaryStream file)
|
||||
{
|
||||
var header = file.ReadHeader (0x18);
|
||||
|
Loading…
Reference in New Issue
Block a user