// ------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
// ------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using HexaGen.Runtime;
using System.Numerics;
namespace Dalamud.Bindings.ImGui
{
///
/// To be documented.
///
[StructLayout(LayoutKind.Sequential)]
public partial struct StbTexteditRow
{
///
/// To be documented.
///
public float X0;
///
/// To be documented.
///
public float X1;
///
/// To be documented.
///
public float BaselineYDelta;
///
/// To be documented.
///
public float Ymin;
///
/// To be documented.
///
public float Ymax;
///
/// To be documented.
///
public int NumChars;
///
/// To be documented.
///
public unsafe StbTexteditRow(float x0 = default, float x1 = default, float baselineYDelta = default, float ymin = default, float ymax = default, int numChars = default)
{
X0 = x0;
X1 = x1;
BaselineYDelta = baselineYDelta;
Ymin = ymin;
Ymax = ymax;
NumChars = numChars;
}
}
}