restructure

This commit is contained in:
Soreepeong 2025-07-26 22:33:38 +09:00
parent 3381ac1c7d
commit b53a97408b
263 changed files with 2221 additions and 1191 deletions

View file

@ -2,7 +2,7 @@ namespace Dalamud.Bindings.ImGui;
public unsafe partial struct ImGuiTextBuffer
{
public void append(Utf8Buffer str)
public void append(ImU8String str)
{
fixed (ImGuiTextBuffer* thisPtr = &this)
ImGui.append(thisPtr, str);
@ -11,5 +11,5 @@ public unsafe partial struct ImGuiTextBuffer
public partial struct ImGuiTextBufferPtr
{
public void append(Utf8Buffer str) => ImGui.append(this, str);
public void append(ImU8String str) => ImGui.append(this, str);
}