Game #23

Merged
schrom01 merged 43 commits from Game into main 2022-03-20 16:56:34 +01:00
1 changed files with 3 additions and 6 deletions
Showing only changes of commit ddbf666cc8 - Show all commits

View File

@ -53,8 +53,7 @@ public class Game implements GameSpecification {
*/
@Override
public char getCarId(int carIndex) {
// TODO: implementation
throw new UnsupportedOperationException();
return track.getCarId(carIndex);
}
/**
@ -64,8 +63,7 @@ public class Game implements GameSpecification {
*/
@Override
public PositionVector getCarPosition(int carIndex) {
// TODO: implementation
throw new UnsupportedOperationException();
return track.getCarPos(carIndex);
}
/**
@ -75,8 +73,7 @@ public class Game implements GameSpecification {
*/
@Override
public PositionVector getCarVelocity(int carIndex) {
// TODO: implementation
throw new UnsupportedOperationException();
return track.getCarVelocity(carIndex);
}
/**