class Ball extends Sphere {

    public void moveLeft(int amount) {
        x = x - amount;
    }

    public void moveRight(int amount) {
        x = x + amount;
    }
}
