// using HexaGen.Runtime; using System; using System.Diagnostics; using System.Numerics; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace Dalamud.Bindings.ImGui; public unsafe partial struct ImDrawCmd { public unsafe void Destroy() { fixed (ImDrawCmd* @this = &this) { ImGuiNative.Destroy(@this); } } public unsafe ImTextureID GetTexID() { fixed (ImDrawCmd* @this = &this) { ImTextureID ret = ImGuiNative.GetTexID(@this); return ret; } } }