Files
Perfect11/Perfect11.TweaksInterface/TweaksInterface.cs
2025-10-17 17:16:41 +02:00

21 lines
459 B
C#
Raw 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 plugin.
/// </summary>
string Name { get; }
/// <summary>
/// A short description of what the plugin does.
/// </summary>
string Description { get; }
/// <summary>
/// Executes the plugins main logic.
/// </summary>
void Execute();
}
}