implemented D.O.'s VRS, GGA and GGS images.

This commit is contained in:
morkt
2018-01-16 11:53:25 +04:00
parent c270574f52
commit aa93dabd2d
8 changed files with 665 additions and 20 deletions

View File

@@ -460,13 +460,13 @@ namespace GameRes.Formats.Ikura
}
[Export(typeof(ImageFormat))]
public class GgaFormat : ImageFormat
public class Gga0Format : ImageFormat
{
public override string Tag { get { return "GG2"; } }
public override string Description { get { return "IKURA GDL image format"; } }
public override uint Signature { get { return 0x30414747u; } } // 'GGA0'
public GgaFormat ()
public Gga0Format ()
{
Extensions = new string[] { "gg1", "gg2", "gg3", "gg0" };
}