mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-27 10:59:18 +01:00
15 lines
422 B
C#
15 lines
422 B
C#
namespace Dalamud.Bindings.ImGui;
|
|
|
|
public unsafe partial struct ImGuiInputTextCallbackData
|
|
{
|
|
public void InsertChars(int pos, Utf8Buffer text)
|
|
{
|
|
fixed (ImGuiInputTextCallbackData* thisPtr = &this)
|
|
ImGui.InsertChars(thisPtr, pos, text);
|
|
}
|
|
}
|
|
|
|
public partial struct ImGuiInputTextCallbackDataPtr
|
|
{
|
|
public void InsertChars(int pos, Utf8Buffer text) => ImGui.InsertChars(this, pos, text);
|
|
}
|