mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-20 21:29:48 +00:00
11 lines
282 B
C#
11 lines
282 B
C#
namespace SabreTools.Serialization.Models.NewExecutable
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static readonly byte[] SignatureBytes = [0x4e, 0x45];
|
|
|
|
public const string SignatureString = "NE";
|
|
|
|
public const ushort SignatureUInt16 = 0x454e;
|
|
}
|
|
} |