using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.BSP
{
///
/// Occluder polygons are stored in the doccluderpolydata_t
/// structure and contain the firstvertexindex field, which
/// is the first index into the vertex array of the occluder,
/// which are again indices for the vertex array of the vertex
/// lump (Lump 3). The total number of vertex indices is
/// stored in vertexcount.
///
///
[StructLayout(LayoutKind.Sequential)]
public sealed class OccluderPolyData
{
///
/// Index into doccludervertindices
///
public int FirstVertexIndex;
///
/// Amount of vertex indices
///
public int VertexCount;
public int PlanEnum;
}
}