You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
268B

  1. package de.hems.trafficsim;
  2. import java.util.LinkedList;
  3. import java.util.List;
  4. public class Track {
  5. protected List<Vehicle> vehicles;
  6. public Track() {
  7. this.vehicles = new LinkedList<>();
  8. }
  9. public void timeElapse(float timeStep) {
  10. }
  11. }