using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.BSP
{
///
/// The last two parts appear to be identical to the PHY file format,
/// which means their exact contents are unknown. Note that the
/// compactsurfaceheader_t structure contains the data size of each
/// collision data section (including the rest of the header)
///
///
[StructLayout(LayoutKind.Sequential)]
public sealed class PhysSolid
{
///
/// Size of the collision data
///
public int Size;
///
/// Collision data of length
///
public byte[] CollisionData = [];
}
}