// Jumper.java [static]
interface Jumper
{
  void Jump(int x, int y, int alt);
  boolean CheckDistance(int x, int y);
  void SprintTo(int x, int y);
  void LiftOff(int alt);
  void Land();
}
  
