mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
17 lines
389 B
C#
17 lines
389 B
C#
namespace BinaryObjectScanner.Models.NCF
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/NCFFile.h"/>
|
|
public sealed class UnknownHeader
|
|
{
|
|
/// <summary>
|
|
/// Always 0x00000001
|
|
/// </summary>
|
|
public uint Dummy0;
|
|
|
|
/// <summary>
|
|
/// Always 0x00000000
|
|
/// </summary>
|
|
public uint Dummy1;
|
|
}
|
|
}
|