Dalamud/imgui/Dalamud.Bindings.ImGui/Custom/Generated/ImDrawCmd.gen.cs
Soreepeong 51a20300d8 wip2
2025-07-22 02:10:46 +09:00

30 lines
542 B
C#

// <auto-generated/>
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;
}
}
}