Files

20 lines
558 B
C#
Raw Permalink Normal View History

2025-09-26 10:57:15 -04:00
using System.Runtime.InteropServices;
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.BSP
2025-09-26 10:57:15 -04:00
{
/// <summary>
/// he DispTris lump (Lump 48) contains "triangle tags" or flags
/// related to the properties of a particular triangle in the
/// displacement mesh.
/// </summary>
2026-01-27 12:03:01 -05:00
/// <see href="https://developer.valvesoftware.com/wiki/BSP_(Source)"/>
2025-09-26 10:57:15 -04:00
[StructLayout(LayoutKind.Sequential)]
public sealed class DispTri
{
/// <summary>
/// Displacement triangle tags.
/// </summary>
public DispTriTag Tags;
}
2026-01-27 12:03:01 -05:00
}