DP-VoidBox/VoidBox/GameVersion.cs

13 lines
331 B
C#
Raw Normal View History

2024-03-02 01:31:18 +01:00
using FFXIVClientStructs.FFXIV.Client.System.Framework;
namespace Ktisis;
public static class GameVersion {
public const string Validated = "2023.11.09.0000.0000";
public unsafe static string GetCurrent() {
var framework = Framework.Instance();
return framework != null ? framework->GameVersion.Base : string.Empty;
}
}