namespace SabreTools.Data.Models.BSP
{
///
/// Presumably, this array is used to index into the leaf lump
/// to locate the leaves that each prop static is located in.
/// Note that a prop static may span several leaves.
///
///
public sealed class StaticPropLeafLump
{
public int LeafEntries;
///
///
///
public ushort[] Leaf = [];
}
}