mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 12:23:39 +01:00
15 lines
337 B
C#
15 lines
337 B
C#
namespace Dalamud.Bindings.ImGui;
|
|
|
|
public unsafe partial struct ImGuiTextBuffer
|
|
{
|
|
public void append(ImU8String str)
|
|
{
|
|
fixed (ImGuiTextBuffer* thisPtr = &this)
|
|
ImGui.append(thisPtr, str);
|
|
}
|
|
}
|
|
|
|
public partial struct ImGuiTextBufferPtr
|
|
{
|
|
public void append(ImU8String str) => ImGui.append(this, str);
|
|
}
|