private boolean strech;
public AbstractSheep(World world) {
super(world);
Ground ground = world.findFirstObject(Ground.class);
if (ground != null) {
setPosition(ground.getWidth() + getWidth(),
world.getHeight() - ground.getHeight()
+ random.nextInt(ground.getHeight() - getHeight()));
}
jumpX = calcJumpX();
}