mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-09 21:32:11 +00:00
14 lines
359 B
C#
14 lines
359 B
C#
namespace BinaryObjectScanner.Models.VBSP
|
|
{
|
|
/// <summary>
|
|
/// Half-Life 2 Level
|
|
/// </summary>
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VBSPFile.h"/>
|
|
public sealed class File
|
|
{
|
|
/// <summary>
|
|
/// Directory header data
|
|
/// </summary>
|
|
public Header Header { get; set; }
|
|
}
|
|
} |