21 lines
456 B
C#
21 lines
456 B
C#
|
|
|||
|
namespace YooAsset
|
|||
|
{
|
|||
|
public class ManifestDefine
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 文件极限大小(100MB)
|
|||
|
/// </summary>
|
|||
|
public const int FileMaxSize = 104857600;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 文件头标记
|
|||
|
/// </summary>
|
|||
|
public const uint FileSign = 0x594F4F;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 文件格式版本
|
|||
|
/// </summary>
|
|||
|
public const string FileVersion = "2.3.1";
|
|||
|
}
|
|||
|
}
|