
public class Santa extends Strategy {

  public Santa () {}

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

  protected int firstMove () {
    return 0;
  }

  protected boolean leave (int myLastPlay, int otherLastPlay, int currentScore)
    {return true;}
}

