import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;


class Bomb extends Sprite {

	private int stepSize;

	public Bomb(int initialX, int initialY) {

		x = initialX;
		y = initialY;
		width = 5;
		height = 10;
		stepSize = 10;
		
	}	

	public void draw(JPanel panel) {

		Graphics paper = panel.getGraphics();
		paper.fillOval(x, y, width, height);
		
	}	

	public void move() {

		y = y + stepSize;
	}
}		
