mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 12:23:39 +01:00
17 lines
492 B
C#
17 lines
492 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
namespace Dalamud.Bindings.ImGui;
|
|
|
|
public unsafe partial struct ImFontGlyphRangesBuilder
|
|
{
|
|
public void AddText([InterpolatedStringHandlerArgument] AutoUtf8Buffer text)
|
|
{
|
|
fixed (ImFontGlyphRangesBuilder* thisPtr = &this)
|
|
ImGui.AddText(thisPtr, text);
|
|
}
|
|
}
|
|
|
|
public partial struct ImFontGlyphRangesBuilderPtr
|
|
{
|
|
public void AddText([InterpolatedStringHandlerArgument] AutoUtf8Buffer text) => ImGui.AddText(this, text);
|
|
}
|