namespace SabreTools.Data.Models.BSP
{
///
/// This lump simply consists of all vertices of the BSP tree.
/// They are stored as a primitve array of triples of floats.
///
///
///
public sealed class VerticesLump : Lump
{
///
/// Vertices
///
public Vector3D[] Vertices { get; set; } = [];
}
}