Files

21 lines
532 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
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/BSPFile.h"/>
/// <see href="https://developer.valvesoftware.com/wiki/BSP_(GoldSrc)"/>
[StructLayout(LayoutKind.Sequential)]
public class BspLumpEntry
{
/// <summary>
/// File offset to data
/// </summary>
public int Offset;
/// <summary>
/// Length of data
/// </summary>
public int Length;
}
2025-10-30 21:21:56 -04:00
}