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