Files
2026-04-19 09:04:25 -04:00

11 lines
261 B
C#

namespace SabreTools.Data.Models.XRD
{
public static class Constants
{
/// <summary>
/// Magic string at start of XRD file
/// </summary>
public static readonly byte[] MagicBytes = [0x58, 0x52, 0x44, 0xFF, 0x00];
}
}