14 lines
370 B
C#
14 lines
370 B
C#
using FFXIVClientStructs.FFXIV.Client.System.Framework;
|
|
using System.Text;
|
|
|
|
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 ? Encoding.UTF8.GetString(framework->GameVersion) : string.Empty;
|
|
}
|
|
}
|