TheGreatSeparator/TheGreatSeparator/Plugin.cs

18 lines
455 B
C#
Executable File

using Dalamud.Plugin;
namespace TheGreatSeparator {
public class Plugin : IDalamudPlugin {
public string Name => "The Great Separator";
private TheGreatSeparator? Separator { get; set; }
public void Initialize(DalamudPluginInterface pluginInterface) {
this.Separator = new TheGreatSeparator(pluginInterface);
}
public void Dispose() {
this.Separator?.Dispose();
}
}
}