
public class Moth extends Strategy {

  public Moth () {}

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

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

}
