mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-28 03:19:19 +01:00
28 lines
508 B
C#
28 lines
508 B
C#
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() { }
|
|
}
|