mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 23:05:12 +00:00
12 lines
353 B
C#
12 lines
353 B
C#
|
|
namespace SabreTools.Data.Models.SNES
|
||
|
|
{
|
||
|
|
public static class Constants
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Super Wild Card header identifier
|
||
|
|
/// </summary>
|
||
|
|
/// <see href="https://www.raphnet.net/divers/documentation/Sneskart.txt"/>
|
||
|
|
public static readonly byte[] SuperWildCardHeaderIdentifier = [0xAA, 0xBB, 0x04];
|
||
|
|
}
|
||
|
|
}
|