mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 06:13:40 +01:00
15 lines
380 B
C#
15 lines
380 B
C#
namespace Dalamud.Bindings.ImGui;
|
|
|
|
public unsafe partial struct ImFontGlyphRangesBuilder
|
|
{
|
|
public void AddText(AutoUtf8Buffer text)
|
|
{
|
|
fixed (ImFontGlyphRangesBuilder* thisPtr = &this)
|
|
ImGui.AddText(thisPtr, text);
|
|
}
|
|
}
|
|
|
|
public partial struct ImFontGlyphRangesBuilderPtr
|
|
{
|
|
public void AddText(AutoUtf8Buffer text) => ImGui.AddText(this, text);
|
|
}
|