using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.BSP
{
///
/// he DispTris lump (Lump 48) contains "triangle tags" or flags
/// related to the properties of a particular triangle in the
/// displacement mesh.
///
///
[StructLayout(LayoutKind.Sequential)]
public sealed class DispTri
{
///
/// Displacement triangle tags.
///
public DispTriTag Tags;
}
}