/* Car objects get placed in queues at the intersection they can turn and store the time they arrived at the intersection */ public class Car{ //possible directions for a Car public static final int LEFT = 0, RIGHT = 1, STRAIGHT = 2; //declare instance variables here //constructor stores the passed parameters public Car(int time, int dir){ } //accessors to retrieve the initial parameters public int getDirection(){ } public int getBornTime(){ } }