Interface IPluginCollector

Namespace
Elegy.Common.Interfaces
Assembly
Elegy.Common.dll

Handles the loading and unloading of plugins. Used by other Elegy systems to "catch" their respective plugin types and similar things.

public interface IPluginCollector

Methods

OnPluginLoaded(IPlugin)

What happens when the plugin is loaded.

void OnPluginLoaded(IPlugin plugin)

Parameters

plugin IPlugin

OnPluginUnloaded(IPlugin)

What happens when the plugin is unloaded.

void OnPluginUnloaded(IPlugin plugin)

Parameters

plugin IPlugin