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

28 lines
543 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 ImGuiStyle
{
public unsafe void Destroy()
{
fixed (ImGuiStyle* @this = &this)
{
ImGuiNative.Destroy(@this);
}
}
public unsafe void ScaleAllSizes(float scaleFactor)
{
fixed (ImGuiStyle* @this = &this)
{
ImGuiNative.ScaleAllSizes(@this, scaleFactor);
}
}
}