
public class TitForTat extends Strategy {

  public TitForTat () {}

  public TitForTat (int strategyNumberIn, String nameIn) {
    strategyNumber = strategyNumberIn;
    name = nameIn;
    pop = 0;
  }

  protected int secondMove (int myLastPlay, int otherLastPlay, int currentScore)   {
    return otherLastPlay;
  }
}

