mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-24 20:04:13 +08:00
(DataFileFormat): new exported class.
This commit is contained in:
parent
6dd35ab2d2
commit
e5dc3ae80b
@ -27,6 +27,7 @@ using GameRes.Utility;
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.ComponentModel.Composition;
|
||||||
|
|
||||||
namespace GameRes.Formats
|
namespace GameRes.Formats
|
||||||
{
|
{
|
||||||
@ -340,4 +341,13 @@ namespace GameRes.Formats
|
|||||||
dump.Write (mem, 0, mem.Length);
|
dump.Write (mem, 0, mem.Length);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Export(typeof(ScriptFormat))]
|
||||||
|
public class DataFileFormat : GenericScriptFormat
|
||||||
|
{
|
||||||
|
public override string Type { get { return ""; } }
|
||||||
|
public override string Tag { get { return "DAT/GENERIC"; } }
|
||||||
|
public override string Description { get { return "Unidentified data file"; } }
|
||||||
|
public override uint Signature { get { return 0; } }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user