using System.Runtime.InteropServices; namespace SabreTools.Data.Models.BSP { /// /// 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. /// [StructLayout(LayoutKind.Sequential)] public class QAngle { public float X; public float Y; public float Z; } }