mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 05:35:17 +00:00
11 lines
296 B
C#
11 lines
296 B
C#
namespace BinaryObjectScanner.Models.WAD
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static readonly byte[] SignatureBytes = new byte[] { 0x57, 0x41, 0x44, 0x33 };
|
|
|
|
public const string SignatureString = "WAD3";
|
|
|
|
public const uint SignatureUInt32 = 0x33444157;
|
|
}
|
|
} |