Separate pages

This commit is contained in:
2022-11-26 23:47:46 +08:00
parent 6ab7bac20b
commit 436c4d809c
48 changed files with 12655 additions and 8659 deletions

View File

@@ -0,0 +1,25 @@
using System;
using GrasscutterTools.Game;
using GrasscutterTools.OpenCommand;
namespace GrasscutterTools.Utils
{
internal static class Common
{
/// <summary>
/// 应用版本
/// </summary>
public static Version AppVersion { get; set; }
/// <summary>
/// 命令版本
/// </summary>
public static CommandVersion CommandVersion { get; } = CommandVersion.Latest();
/// <summary>
/// 开放命令接口
/// </summary>
public static OpenCommandAPI OC { get; set; }
}
}