Skip to content

Commit

Permalink
Fix updated struct version
Browse files Browse the repository at this point in the history
  • Loading branch information
murshex authored and ikpil committed Dec 23, 2023
1 parent e782208 commit 9c7f34c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DotRecast.Detour.Extras/Unity/Astar/Meta.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class Meta
{
public const string TYPENAME_RECAST_GRAPH = "Pathfinding.RecastGraph";
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 string version { get; set; }
public int graphs { get; set; }
Expand Down Expand Up @@ -86,4 +86,4 @@ public bool IsSupportedType()
return false;
}
}
}
}

0 comments on commit 9c7f34c

Please sign in to comment.