mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-07 22:59:14 +08:00
26 lines
647 B
C#
26 lines
647 B
C#
using System;
|
|
|
|
using GrasscutterTools.Game;
|
|
using GrasscutterTools.OpenCommand;
|
|
|
|
namespace GrasscutterTools.Utils
|
|
{
|
|
internal static class Common
|
|
{
|
|
/// <summary>
|
|
/// 应用版本
|
|
/// </summary>
|
|
public static Version AppVersion { get; } = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
|
|
|
|
/// <summary>
|
|
/// 命令版本
|
|
/// </summary>
|
|
public static CommandVersion CommandVersion { get; } = CommandVersion.Latest();
|
|
|
|
/// <summary>
|
|
/// 开放命令接口
|
|
/// </summary>
|
|
public static OpenCommandAPI OC { get; set; }
|
|
}
|
|
}
|