Dalamud/imgui/Dalamud.Bindings.ImGui/Generated/Structs/ImDrawCmdHeader.cs
2025-07-20 01:24:17 +02:00

54 lines
1.2 KiB
C#

// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using HexaGen.Runtime;
using System.Numerics;
namespace Dalamud.Bindings.ImGui
{
/// <summary>
/// To be documented.
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public partial struct ImDrawCmdHeader
{
/// <summary>
/// To be documented.
/// </summary>
public Vector4 ClipRect;
/// <summary>
/// To be documented.
/// </summary>
public ImTextureID TextureId;
/// <summary>
/// To be documented.
/// </summary>
public uint VtxOffset;
/// <summary>
/// To be documented.
/// </summary>
public unsafe ImDrawCmdHeader(Vector4 clipRect = default, ImTextureID textureId = default, uint vtxOffset = default)
{
ClipRect = clipRect;
TextureId = textureId;
VtxOffset = vtxOffset;
}
}
}