mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 06:45:11 +00:00
11 lines
261 B
C#
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];
|
|
}
|
|
}
|