ChlFileSerializer converted to a SerializerBase subclass so it can use the same reference list logic as TV data files

This commit is contained in:
hbeham
2016-05-05 00:12:06 +02:00
parent aaba300f2d
commit 7b7e7bef99
14 changed files with 669 additions and 419 deletions

View File

@@ -0,0 +1,16 @@
using ChanSort.Api;
namespace ChanSort.Loader.RefList
{
public class RefSerializerPlugin : ISerializerPlugin
{
public string PluginName => "ChanSort Reference List";
public string FileFilter => "*.txt;*.chl";
public SerializerBase CreateSerializer(string inputFile)
{
return new RefSerializer(inputFile);
}
}
}