Files

18 lines
454 B
C#
Raw Permalink Normal View History

2025-09-26 10:57:15 -04:00
using System.Runtime.InteropServices;
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.BSP
2025-09-26 10:57:15 -04:00
{
/// <summary>
/// QAngle is a C++ class in Source that represents a three-dimensional
/// extrinsic Tait-Bryan rotations following the right-hand rule, offset
/// from the cardinal Z axis.
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public class QAngle
{
public float X;
public float Y;
public float Z;
}
2025-10-30 21:21:56 -04:00
}