Files
SabreTools.Models/NewExecutable/Constants.cs
2023-09-04 00:12:49 -04:00

11 lines
281 B
C#

namespace SabreTools.Models.NewExecutable
{
public static class Constants
{
public static readonly byte[] SignatureBytes = new byte[] { 0x4e, 0x45 };
public const string SignatureString = "NE";
public const ushort SignatureUInt16 = 0x454e;
}
}