Files
BinaryObjectScanner/BurnOutSharp.Models/NewExecutable/Constants.cs

11 lines
283 B
C#
Raw Normal View History

2022-12-28 14:26:12 -08:00
namespace BurnOutSharp.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;
}
}