mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 07:37:10 +00:00
20 lines
461 B
C#
20 lines
461 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.NCF
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/NCFFile.h"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class UnknownHeader
|
|
{
|
|
/// <summary>
|
|
/// Always 0x00000001
|
|
/// </summary>
|
|
public uint Dummy0;
|
|
|
|
/// <summary>
|
|
/// Always 0x00000000
|
|
/// </summary>
|
|
public uint Dummy1;
|
|
}
|
|
}
|