mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-28 11:29:18 +01:00
17 lines
542 B
C#
17 lines
542 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
namespace Dalamud.Bindings.ImGui;
|
|
|
|
public unsafe partial struct ImGuiInputTextCallbackData
|
|
{
|
|
public void InsertChars(int pos, [InterpolatedStringHandlerArgument] AutoUtf8Buffer text)
|
|
{
|
|
fixed (ImGuiInputTextCallbackData* thisPtr = &this)
|
|
ImGui.InsertChars(thisPtr, pos, text);
|
|
}
|
|
}
|
|
|
|
public partial struct ImGuiInputTextCallbackDataPtr
|
|
{
|
|
public void InsertChars(int pos, [InterpolatedStringHandlerArgument] AutoUtf8Buffer text) => ImGui.InsertChars(this, pos, text);
|
|
}
|