mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
20 lines
620 B
C#
20 lines
620 B
C#
namespace Artemis.Core
|
|
{
|
|
/// <summary>
|
|
/// An optional entry point for your plugin
|
|
/// </summary>
|
|
public interface IPluginBootstrapper
|
|
{
|
|
/// <summary>
|
|
/// Called when the plugin is activated
|
|
/// </summary>
|
|
/// <param name="plugin">The plugin instance of your plugin</param>
|
|
void Enable(Plugin plugin);
|
|
|
|
/// <summary>
|
|
/// Called when the plugin is deactivated or when Artemis shuts down
|
|
/// </summary>
|
|
/// <param name="plugin">The plugin instance of your plugin</param>
|
|
void Disable(Plugin plugin);
|
|
}
|
|
} |