mirror of https://github.com/tuyoogame/YooAsset
26 lines
657 B
C#
26 lines
657 B
C#
|
|
namespace YooAsset.Editor
|
|
{
|
|
public class ScannerDefine
|
|
{
|
|
/// <summary>
|
|
/// 报告文件签名
|
|
/// </summary>
|
|
public const string ReportFileSign = "596f6f4172745265706f7274";
|
|
|
|
/// <summary>
|
|
/// 配置文件签名
|
|
/// </summary>
|
|
public const string SettingFileSign = "596f6f41727453657474696e67";
|
|
|
|
/// <summary>
|
|
/// 报告文件的版本
|
|
/// </summary>
|
|
public const string ReportFileVersion = "1.0";
|
|
|
|
/// <summary>
|
|
/// 配置文件的版本
|
|
/// </summary>
|
|
public const string SettingFileVersion = "1.0";
|
|
}
|
|
} |