Files
BinaryObjectScanner/BurnOutSharp.Models/SFFS/Constants.cs
2022-12-28 15:13:38 -08:00

11 lines
290 B
C#

namespace BurnOutSharp.Models.SFFS
{
public static class Constants
{
public static readonly byte[] SignatureBytes = new byte[] { 0x53, 0x46, 0x46, 0x53 };
public const string SignatureString = "SFFS";
public const uint SignatureUInt32 = 0x53464653;
}
}