mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 20:33:40 +01:00
16 lines
408 B
C#
16 lines
408 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
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);
|
|
}
|