mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
17 lines
427 B
C#
17 lines
427 B
C#
using ImGuiNET;
|
|
|
|
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.");
|
|
}
|
|
}
|