Dalamud/imgui/Dalamud.Bindings.ImGui/Custom/Generated/Generated/Structs/ImDrawCmd.gen.cs

29 lines
541 B
C#
Generated

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