mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 12:23:39 +01:00
29 lines
544 B
C#
29 lines
544 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 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);
|
|
}
|
|
}
|
|
}
|
|
|