using System;
using System.Runtime.InteropServices;
namespace Raylib_cs
{
///
/// Bone information
///
[StructLayout(LayoutKind.Sequential)]
public struct BoneInfo
{
///
/// Bone name (char[32])
///
public IntPtr name;
///
/// Bone parent
///
public int parent;
}
}