Fix updated struct version

This commit is contained in:
c0nd3v 2023-12-17 19:28:46 -05:00 committed by Ikpil
parent e782208faa
commit 9c7f34c521
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ namespace DotRecast.Detour.Extras.Unity.Astar
{ {
public const string TYPENAME_RECAST_GRAPH = "Pathfinding.RecastGraph"; public const string TYPENAME_RECAST_GRAPH = "Pathfinding.RecastGraph";
public const string MIN_SUPPORTED_VERSION = "4.0.6"; public const string MIN_SUPPORTED_VERSION = "4.0.6";
public const string UPDATED_STRUCT_VERSION = "4.1.16"; public const string UPDATED_STRUCT_VERSION = "4.1.0";
public static readonly Regex VERSION_PATTERN = new Regex(@"(\d+)\.(\d+)\.(\d+)"); public static readonly Regex VERSION_PATTERN = new Regex(@"(\d+)\.(\d+)\.(\d+)");
public string version { get; set; } public string version { get; set; }
public int graphs { get; set; } public int graphs { get; set; }
@ -86,4 +86,4 @@ namespace DotRecast.Detour.Extras.Unity.Astar
return false; return false;
} }
} }
} }