diff --git a/Assets/Scripts/Map/MapPatrollingGen/WatchmanRouteSolver.cs b/Assets/Scripts/Map/MapPatrollingGen/WatchmanRouteSolver.cs index aa3fe874..d1585e39 100644 --- a/Assets/Scripts/Map/MapPatrollingGen/WatchmanRouteSolver.cs +++ b/Assets/Scripts/Map/MapPatrollingGen/WatchmanRouteSolver.cs @@ -424,4 +424,4 @@ private static void BreathFirstSearch(Vector2Int startPosition, Dictionary<(Vect } } } -} +} \ No newline at end of file diff --git a/Assets/Scripts/Map/Vertex.cs b/Assets/Scripts/Map/Vertex.cs index b90f4831..38a632ee 100644 --- a/Assets/Scripts/Map/Vertex.cs +++ b/Assets/Scripts/Map/Vertex.cs @@ -13,7 +13,7 @@ public class Vertex public float Weight { get; } public int LastTimeVisitedTick { get; private set; } public Vector2Int Position { get; } - public Color Color { get; set;} + public Color Color { get; set; } public int NumberOfVisits { get; private set; } public Vertex(int id, float weight, Vector2Int position, Color? color = null) diff --git a/Assets/Scripts/Simulation/PatrollingSimulation.cs b/Assets/Scripts/Simulation/PatrollingSimulation.cs index f7f25d57..e4768e13 100644 --- a/Assets/Scripts/Simulation/PatrollingSimulation.cs +++ b/Assets/Scripts/Simulation/PatrollingSimulation.cs @@ -3,7 +3,6 @@ using System.IO; using Maes.Algorithms; -using Maes.Map.MapPatrollingGen; using Maes.Map.RobotSpawners; using Maes.Simulation.SimulationScenarios; using Maes.Statistics;