mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-23 16:27:44 +01:00
Work on manual bindings
This commit is contained in:
parent
f391ac57d3
commit
3381ac1c7d
37 changed files with 2596 additions and 48072 deletions
|
|
@ -1,10 +1,8 @@
|
|||
using System.Runtime.CompilerServices;
|
||||
|
||||
namespace Dalamud.Bindings.ImGui;
|
||||
|
||||
public unsafe partial struct ImFontGlyphRangesBuilder
|
||||
{
|
||||
public void AddText(AutoUtf8Buffer text)
|
||||
public void AddText(Utf8Buffer text)
|
||||
{
|
||||
fixed (ImFontGlyphRangesBuilder* thisPtr = &this) ImGui.AddText(thisPtr, text);
|
||||
}
|
||||
|
|
@ -12,5 +10,5 @@ public unsafe partial struct ImFontGlyphRangesBuilder
|
|||
|
||||
public partial struct ImFontGlyphRangesBuilderPtr
|
||||
{
|
||||
public void AddText(AutoUtf8Buffer text) => ImGui.AddText(this, text);
|
||||
public void AddText(Utf8Buffer text) => ImGui.AddText(this, text);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue