implemented PathFinder, that searches for possible routes to a destinationblock

This commit is contained in:
Stephan Richter
2020-11-12 11:40:03 +01:00
parent d8a3629446
commit 69fdd3a805
7 changed files with 142 additions and 60 deletions

View File

@@ -293,7 +293,7 @@ public abstract class Block extends StretchableTile{
@Override
public String toString() {
return getClass().getSimpleName()+"("+name+") @ ("+x+","+y+")";
return name + " @ ("+x+","+y+")";
}
@Override