mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-23 23:25:35 +00:00
14 lines
297 B
C#
14 lines
297 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SabreTools.Models.SafeDisc
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const uint EncryptedFileEntrySignature1 = 0xA8726B03;
|
|
|
|
public const uint EncryptedFileEntrySignature2 = 0xEF01996C;
|
|
}
|
|
}
|