
public class Aarre extends Esine {
  private int pisteet;
  
  public Aarre(int x, int y) {
    super(x, y, 'A');
    this.pisteet = 100;
  }
  
  public int getPisteet() {
    return this.pisteet;
  }
}
