diff --git a/Dalamud/Fools/FoolsManager.cs b/Dalamud/Fools/FoolsManager.cs index b8660876d..fbb4fbf92 100644 --- a/Dalamud/Fools/FoolsManager.cs +++ b/Dalamud/Fools/FoolsManager.cs @@ -30,7 +30,6 @@ internal class FoolsManager : IDisposable, IServiceType // reflect over all IFoolsPlugin implementations sometime(?) this.FoolsPlugins = new List { - new("Test Fool Plugin", "TestFoolPlugin", "this is a test", "NotNite", typeof(TestFoolPlugin)), new("Pixel Imperfect", "PixelImperfectPlugin", "Whoops... we messed up the math on that one.", "Halpo", typeof(PixelImperfectPlugin)), new("DailyLifeDuty", "DailyLifeDutyPlugin", "Easily Track Daily and Weekly tasks... in real life", "MidoriKami", typeof(DailyLifeDutyPlugin)), diff --git a/Dalamud/Fools/Plugins/TestFoolPlugin.cs b/Dalamud/Fools/Plugins/TestFoolPlugin.cs deleted file mode 100644 index 57b36cc46..000000000 --- a/Dalamud/Fools/Plugins/TestFoolPlugin.cs +++ /dev/null @@ -1,28 +0,0 @@ -using ImGuiNET; - -namespace Dalamud.Fools.Plugins; - -public class TestFoolPlugin : IFoolsPlugin -{ - public string Name => "TestFoolPlugin"; - - public string Description => "TestFoolPlugin"; - - public string InternalName => "TestFoolPlugin"; - - public string Author => "NotNite"; - - public TestFoolPlugin() { } - - public void DrawUi() - { - if (ImGui.Begin("Nuts")) - { - ImGui.Text("balls"); - } - - ImGui.End(); - } - - public void Dispose() { } -}