using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.BSP
{
///
/// The edges delimit the face and further refer to the vertices of the
/// face. Each edge is pointing to the start and end vertex of the edge.
///
///
///
[StructLayout(LayoutKind.Sequential)]
public sealed class Edge
{
///
/// Indices into vertex array
///
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
public ushort[] VertexIndices = new ushort[2];
}
}