OrangeGuidanceTomestone/client/Plugin.cs

23 lines
436 B
C#
Raw Normal View History

2022-09-03 02:59:45 +00:00
using Dalamud.IoC;
using Dalamud.Plugin;
namespace OrangeGuidanceTomestone;
public class Plugin : IDalamudPlugin {
public string Name => "Orange Guidance Tomestone";
[PluginService]
internal DalamudPluginInterface Interface { get; init; }
2022-09-03 03:24:01 +00:00
internal PluginUi Ui { get; }
2022-09-03 02:59:45 +00:00
public Plugin() {
2022-09-03 03:24:01 +00:00
this.Ui = new PluginUi(this);
2022-09-03 02:59:45 +00:00
}
public void Dispose() {
2022-09-03 03:24:01 +00:00
this.Ui.Dispose();
2022-09-03 02:59:45 +00:00
}
}