mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-13 10:52:05 +01:00
16 lines
385 B
C#
16 lines
385 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.GlobalClone
|
|
{
|
|
public class GcSerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string PluginName { get { return "LG GlobalClone"; } }
|
|
public string FileFilter { get { return "*Clone*.tll;xx*.xml"; } }
|
|
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new GcSerializer(inputFile);
|
|
}
|
|
}
|
|
}
|