Merge remote-tracking branch 'origin/follow-route' into follow-route

This commit is contained in:
Robin Koedood
2021-01-06 17:07:47 +01:00
2 changed files with 30 additions and 7 deletions

View File

@@ -9,7 +9,16 @@ public enum StaticData {
INSTANCE;
private double distanceTraveled = 0;
private int locationsVisited = 0;
private long timeWalked = 0;
private long timeWalkedRoute = 0;
private double zoom = 0;
public double getZoom() {
return zoom;
}
public void setZoom(double zoom) {
this.zoom = zoom;
}
private ArrayList<String> visitedNames = new ArrayList<>();