Add posibility to reset PathExecutor

This commit is contained in:
2022-08-31 23:39:57 +02:00
parent 028511e718
commit 60890943c7

View File

@@ -61,4 +61,9 @@ public class PathExecutor<T extends Movable> {
return result;
}
public void reset() {
iteration = 0;
current = 0;
}
}