Files
SabreTools.Models/NCF/DirectoryInfo1Entry.cs
2024-04-23 13:30:43 -04:00

15 lines
354 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 DirectoryInfo1Entry
{
/// <summary>
/// Reserved
/// </summary>
public uint Dummy0;
}
}