TheGreatSeparator/TheGreatSeparator/Plugin.cs

18 lines
455 B
C#
Raw Normal View History

2021-06-03 01:09:49 +00:00
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();
}
}
}