
public class Nasty extends Strategy {

  public Nasty () {}

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

  protected int firstMove () {
    return 1;
  }
}

