public Athlete()
{
super(1, 1, World.NORTH, World.INFINITY);
}
public Athlete(int x, int y, int dir, int beep)
{
super(x, y, dir, beep);
}
With this constructor you can create an Athlete giving it an x,y position (avenue, street), a direction, and the number of beepers.
Athlete nameOfAthlete = new Athlete(2,3,World.NORTH, 5); is an example