mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 21:03:43 +01:00
restructure
This commit is contained in:
parent
3381ac1c7d
commit
b53a97408b
263 changed files with 2221 additions and 1191 deletions
|
|
@ -2,7 +2,7 @@ namespace Dalamud.Bindings.ImGui;
|
|||
|
||||
public unsafe partial struct ImGuiWindow
|
||||
{
|
||||
public readonly uint GetID(Utf8Buffer str)
|
||||
public readonly uint GetID(ImU8String str)
|
||||
{
|
||||
fixed (ImGuiWindow* thisPtr = &this) return ImGuiP.GetID(thisPtr, str);
|
||||
}
|
||||
|
|
@ -20,7 +20,7 @@ public unsafe partial struct ImGuiWindow
|
|||
|
||||
public unsafe partial struct ImGuiWindowPtr
|
||||
{
|
||||
public readonly uint GetID(Utf8Buffer str) => ImGuiP.GetID(this.Handle, str);
|
||||
public readonly uint GetID(ImU8String str) => ImGuiP.GetID(this.Handle, str);
|
||||
public readonly uint GetID(void* ptr) => ImGuiP.GetID(this.Handle, ptr);
|
||||
public readonly uint GetID(int n) => ImGuiP.GetID(this.Handle, n);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue