mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 12:23:39 +01:00
14 lines
360 B
C#
14 lines
360 B
C#
namespace Dalamud.Bindings.ImGui;
|
|
|
|
public unsafe partial struct ImFontGlyphRangesBuilder
|
|
{
|
|
public void AddText(Utf8Buffer text)
|
|
{
|
|
fixed (ImFontGlyphRangesBuilder* thisPtr = &this) ImGui.AddText(thisPtr, text);
|
|
}
|
|
}
|
|
|
|
public partial struct ImFontGlyphRangesBuilderPtr
|
|
{
|
|
public void AddText(Utf8Buffer text) => ImGui.AddText(this, text);
|
|
}
|