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