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

30 lines
569 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 ImFontAtlasCustomRect
{
public unsafe void Destroy()
{
fixed (ImFontAtlasCustomRect* @this = &this)
{
ImGuiNative.Destroy(@this);
}
}
public unsafe bool IsPacked()
{
fixed (ImFontAtlasCustomRect* @this = &this)
{
byte ret = ImGuiNative.IsPacked(@this);
return ret != 0;
}
}
}