add comment

This commit is contained in:
zwarenelle
2024-06-24 20:19:02 +02:00
parent 9bb3953fdf
commit 07bbdc0083

View File

@@ -29,7 +29,7 @@ public class RoutePlan: IRoute {
// Add obstacles cell by cell
foreach (var obj in parsedBody?.objects)
{
planner.AddObstacleCell(obj[0], obj[1]);
planner.AddObstacleCell(obj[0], obj[1]); // Get x and y for every coordinate in the parsedbody array
}
List<Point> PlanPath = planner.PlanPath();