Files
Perfect11/Perfect11.TweaksInterface/TweaksInterface.cs
2025-10-18 11:38:05 +02:00

26 lines
576 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Perfect11.TweaksInterface
{
public interface IPlugin
{
/// <summary>
/// The display name of the tweak.
/// </summary>
string Name { get; }
/// <summary>
/// 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>
string Execute();
}
}