Files

11 lines
296 B
C#
Raw Permalink Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.WAD
2022-12-28 15:30:22 -08:00
{
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;
}
}