More changes

This commit is contained in:
2025-10-18 11:38:05 +02:00
parent c32a6f9122
commit ceea1fca6b
9 changed files with 352 additions and 61 deletions

View File

@@ -3,18 +3,23 @@
public interface IPlugin
{
/// <summary>
/// The display name of the plugin.
/// The display name of the tweak.
/// </summary>
string Name { get; }
/// <summary>
/// A short description of what the plugin does.
/// A short description of what the tweak does.
/// </summary>
string Description { get; }
/// <summary>
/// The category of the tweak
/// </summary>
string Category { get; }
/// <summary>
/// Executes the plugins main logic.
/// </summary>
void Execute();
string Execute();
}
}