mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-02-10 08:26:46 +01:00
- renamed project directories
- added unit tests for loading and saving TLLs of various LG models - added "Save reference list" menu item
This commit is contained in:
17
ChanSort.Loader.LG/TllFileSerializerPlugin.cs
Normal file
17
ChanSort.Loader.LG/TllFileSerializerPlugin.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using ChanSort.Api;
|
||||
|
||||
namespace ChanSort.Loader.LG
|
||||
{
|
||||
public class TllFileSerializerPlugin : ISerializerPlugin
|
||||
{
|
||||
public string PluginName { get { return "LG-Electronics *.tll"; } }
|
||||
public string FileFilter { get { return "*.TLL"; } }
|
||||
|
||||
#region CreateSerializer()
|
||||
public SerializerBase CreateSerializer(string inputFile)
|
||||
{
|
||||
return new TllFileSerializer(inputFile);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user