import java.awt.Color;
import java.util.Enumeration;

public class InfectedWalker extends NonImmuneWalker{
  // OVERVIEW: An InfectedWalker a person who is infected with the virus.
  // He will spread the virus to every healthy person he meets.

  private boolean inTurn; //Currently in the middle of a turn used for coloring.

  public InfectedWalker () {
    super();//used only for constructors
    becomeInfected();
    inTurn = false;
  }
}