mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 21:03:43 +01:00
Work on manual bindings
This commit is contained in:
parent
f391ac57d3
commit
3381ac1c7d
37 changed files with 2596 additions and 48072 deletions
|
|
@ -0,0 +1,15 @@
|
|||
namespace Dalamud.Bindings.ImGui;
|
||||
|
||||
public unsafe partial struct ImGuiTextBuffer
|
||||
{
|
||||
public void append(Utf8Buffer str)
|
||||
{
|
||||
fixed (ImGuiTextBuffer* thisPtr = &this)
|
||||
ImGui.append(thisPtr, str);
|
||||
}
|
||||
}
|
||||
|
||||
public partial struct ImGuiTextBufferPtr
|
||||
{
|
||||
public void append(Utf8Buffer str) => ImGui.append(this, str);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue