// ------------------------------------------------------------------------------
//
// 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 ImBitArrayImGuiKeyNamedKeyCOUNTLessImGuiKeyNamedKeyBEGIN
{
///
/// To be documented.
///
public uint Storage_0;
public uint Storage_1;
public uint Storage_2;
public uint Storage_3;
public uint Storage_4;
///
/// To be documented.
///
public unsafe ImBitArrayImGuiKeyNamedKeyCOUNTLessImGuiKeyNamedKeyBEGIN(uint* storage = default)
{
if (storage != default(uint*))
{
Storage_0 = storage[0];
Storage_1 = storage[1];
Storage_2 = storage[2];
Storage_3 = storage[3];
Storage_4 = storage[4];
}
}
///
/// To be documented.
///
public unsafe ImBitArrayImGuiKeyNamedKeyCOUNTLessImGuiKeyNamedKeyBEGIN(Span storage = default)
{
if (storage != default(Span))
{
Storage_0 = storage[0];
Storage_1 = storage[1];
Storage_2 = storage[2];
Storage_3 = storage[3];
Storage_4 = storage[4];
}
}
}
}