using System.Runtime.InteropServices; namespace SabreTools.Data.Models.BSP { /// /// There is a common struct used to represent a point in /// 3-dimensional space which is used throughout the file /// spec and the code of the hlbsp project. /// [StructLayout(LayoutKind.Sequential)] public class Vector3D { public float X; public float Y; public float Z; } }