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

@ -85,6 +85,17 @@ namespace Dalamud.Bindings.ImGui
}
/// <summary>
/// To be documented.
/// </summary>
public unsafe void Destroy()
{
fixed (ImGuiStackSizes* @this = &this)
{
ImGui.DestroyNative(@this);
}
}
}
/// <summary>
@ -164,6 +175,14 @@ namespace Dalamud.Bindings.ImGui
/// To be documented.
/// </summary>
public ref short SizeOfDisabledStack => ref Unsafe.AsRef<short>(&Handle->SizeOfDisabledStack);
/// <summary>
/// To be documented.
/// </summary>
public unsafe void Destroy()
{
ImGui.DestroyNative(Handle);
}
}
}