mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 13:45:35 +00:00
28 lines
554 B
C#
28 lines
554 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace BurnOutSharp.Models.BFPK
|
|
{
|
|
/// <summary>
|
|
/// Header
|
|
/// </summary>
|
|
/// <see cref="https://forum.xentax.com/viewtopic.php?t=5102"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public class Header
|
|
{
|
|
/// <summary>
|
|
/// "BFPK"
|
|
/// </summary>
|
|
public uint Magic;
|
|
|
|
/// <summary>
|
|
/// Version
|
|
/// </summary>
|
|
public int Version;
|
|
|
|
/// <summary>
|
|
/// Files
|
|
/// </summary>
|
|
public int Files;
|
|
}
|
|
}
|