Initial commit of new UI c# component
This commit is contained in:
14
Il2CppInspector.Redux.GUI/Outputs/IOutputFormat.cs
Normal file
14
Il2CppInspector.Redux.GUI/Outputs/IOutputFormat.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Il2CppInspector.Model;
|
||||
|
||||
namespace Il2CppInspector.Redux.GUI.Outputs;
|
||||
|
||||
public interface IOutputFormat
|
||||
{
|
||||
public Task Export(AppModel model, UiClient client, string outputPath,
|
||||
Dictionary<string, string> settingsDict);
|
||||
}
|
||||
|
||||
public interface IOutputFormatProvider : IOutputFormat
|
||||
{
|
||||
public static abstract string Id { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user