Files

23 lines
734 B
C#
Raw Permalink Normal View History

2026-03-13 10:51:31 -04:00
namespace SabreTools.Data.Models.XboxExecutable
{
/// <see href="https://www.caustik.com/cxbx/download/xbe.htm"/>
2026-03-13 12:31:33 -04:00
/// <see href="https://github.com/Cxbx-Reloaded/Cxbx-Reloaded/blob/master/src/common/xbe/Xbe.h"/>
2026-03-13 10:51:31 -04:00
public static class Constants
{
/// <summary>
/// XBox Executable magic number ("XBEH")
/// </summary>
public static readonly byte[] MagicBytes = [0x58, 0x42, 0x45, 0x48];
/// <summary>
/// XBox Executable magic number ("XBEH")
/// </summary>
public const string MagicString = "XBEH";
/// <summary>
/// XBox Executable magic number ("XBEH")
/// </summary>
public const uint MagicUInt32 = 0x48454258;
}
}