mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
29 lines
541 B
C#
Generated
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;
|
|
}
|
|
}
|
|
}
|