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

22 lines
452 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 ImGuiStylePtr
{
public unsafe void Destroy()
{
ImGuiNative.Destroy(Handle);
}
public unsafe void ScaleAllSizes(float scaleFactor)
{
ImGuiNative.ScaleAllSizes(Handle, scaleFactor);
}
}