feat(Map.java): ajout getPathSize fonction

This commit is contained in:
2025-10-29 17:48:13 +01:00
parent 183e45dbd4
commit f169269c4a

View File

@@ -165,4 +165,9 @@ public class Map
{ {
return map[y][x].getType(); return map[y][x].getType();
} }
public int getPathSize()
{
return this.pathMap.size();
}
} }