Plugin ↔ Plugin
The following page describes how a plugin may interact with another plugin, e.g. calling functions.
Example
namespace PluginA;
public class Plugin : HogWarpSdk.IPlugin
{
public string Author { get; } = "YourName";
public string Name { get; } = "PluginA";
public Version Version { get; } = new(1, 0, 0, 0);
public Plugin() { }
public void PostLoad() { }
public void Shutdown() { }
public void DoSomething()
{
// This method is called from a different plugin
}
}Last updated