Remove TestFoolPlugin

This commit is contained in:
NotNite 2023-03-19 11:16:06 -04:00
parent 06fea85be3
commit 519580a4d1
No known key found for this signature in database
GPG key ID: BD91A5402CCEB08A
2 changed files with 0 additions and 29 deletions

View file

@ -30,7 +30,6 @@ internal class FoolsManager : IDisposable, IServiceType
// reflect over all IFoolsPlugin implementations sometime(?)
this.FoolsPlugins = new List<FoolsPluginMetadata>
{
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)),

View file

@ -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() { }
}