mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-28 03:19:19 +01:00
Remove TestFoolPlugin
This commit is contained in:
parent
06fea85be3
commit
519580a4d1
2 changed files with 0 additions and 29 deletions
|
|
@ -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)),
|
||||
|
|
|
|||
|
|
@ -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() { }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue