mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-13 19:02:05 +01:00
18 lines
424 B
C#
18 lines
424 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.LG
|
|
{
|
|
public class TllFileSerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string PluginName { get { return "LG-Electronics xx*.tll"; } }
|
|
public string FileFilter { get { return "xx*.TLL"; } }
|
|
|
|
#region CreateSerializer()
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new TllFileSerializer(inputFile);
|
|
}
|
|
#endregion
|
|
}
|
|
}
|