2025-02-07 16:04:12 +08:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
2025-03-24 13:16:51 +08:00
|
|
|
|
namespace AlicizaX
|
2025-02-07 16:04:12 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 版本号类。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static partial class AppVersion
|
|
|
|
|
{
|
2025-03-26 11:01:15 +08:00
|
|
|
|
private const string GameFrameworkVersionString = "1.0.0";
|
2025-02-07 16:04:12 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取游戏框架版本号。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static string GameFrameworkVersion
|
|
|
|
|
{
|
|
|
|
|
get { return GameFrameworkVersionString; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取游戏版本号。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static string GameVersion
|
|
|
|
|
{
|
|
|
|
|
get { return Application.version; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|