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

23 lines
451 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 ImDrawCmdPtr
{
public unsafe void Destroy()
{
ImGuiNative.Destroy(Handle);
}
public unsafe ImTextureID GetTexID()
{
ImTextureID ret = ImGuiNative.GetTexID(Handle);
return ret;
}
}