(DataFileFormat): new exported class.

This commit is contained in:
morkt 2018-11-07 10:09:21 +04:00
parent 6dd35ab2d2
commit e5dc3ae80b

View File

@ -27,6 +27,7 @@ using GameRes.Utility;
using System;
using System.IO;
using System.Linq;
using System.ComponentModel.Composition;
namespace GameRes.Formats
{
@ -340,4 +341,13 @@ namespace GameRes.Formats
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; } }
}
}