mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-09-09 03:01:41 -04:00
22 lines
422 B
C#
22 lines
422 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Raylib_cs
|
|
{
|
|
/// <summary>
|
|
/// Bone information
|
|
/// </summary>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct BoneInfo
|
|
{
|
|
/// <summary>
|
|
/// Bone name (char[32])
|
|
/// </summary>
|
|
public IntPtr name;
|
|
|
|
/// <summary>
|
|
/// Bone parent
|
|
/// </summary>
|
|
public int parent;
|
|
}
|
|
} |