mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
17 lines
441 B
C#
17 lines
441 B
C#
using Dalamud.Bindings.ImGui;
|
|
|
|
namespace Dalamud.Interface.Components;
|
|
|
|
/// <summary>
|
|
/// Class containing various methods providing ImGui components.
|
|
/// </summary>
|
|
public static partial class ImGuiComponents
|
|
{
|
|
/// <summary>
|
|
/// Test component to demonstrate how ImGui components work.
|
|
/// </summary>
|
|
public static void Test()
|
|
{
|
|
ImGui.Text("You are viewing the test component. The test was a success.");
|
|
}
|
|
}
|