Regenerate bindings

This commit is contained in:
goaaats 2025-07-20 01:23:58 +02:00
parent 6078c42963
commit e559ae6b20
310 changed files with 361033 additions and 717041 deletions

View file

@ -67,6 +67,17 @@ namespace Dalamud.Bindings.ImGui
}
/// <summary>
/// To be documented.
/// </summary>
public unsafe void Destroy()
{
fixed (ImGuiStackTool* @this = &this)
{
ImGui.DestroyNative(@this);
}
}
}
/// <summary>
@ -134,6 +145,14 @@ namespace Dalamud.Bindings.ImGui
/// To be documented.
/// </summary>
public ref float CopyToClipboardLastTime => ref Unsafe.AsRef<float>(&Handle->CopyToClipboardLastTime);
/// <summary>
/// To be documented.
/// </summary>
public unsafe void Destroy()
{
ImGui.DestroyNative(Handle);
}
}
}