Commit fe05dea2 authored by Tobias Meuser's avatar Tobias Meuser
Browse files

Added missing methods to XMLController

parent a43aac76
...@@ -210,4 +210,9 @@ public class XMLSimulationController implements VehicleController, SimulationSet ...@@ -210,4 +210,9 @@ public class XMLSimulationController implements VehicleController, SimulationSet
return _vehicleDataInformationHandler.getVehiclePositions().get(pVehicleID).getSpeed(); return _vehicleDataInformationHandler.getVehiclePositions().get(pVehicleID).getSpeed();
} }
@Override
public double getVehicleHeading(String pVehicleID) {
return _vehicleDataInformationHandler.getVehiclePositions().get(pVehicleID).getHeading();
}
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment