Ejemplo n.º 1
0
 @Override
 public boolean collidesWithListener(Upgrade upgrade) {
   if ((Math.abs(upgrade.getPosX() - this.posX) < 50)
       && (Math.abs(upgrade.getPosY() - this.posY) < 50)) {
     return true;
   }
   return false;
 }