import java.awt.Graphics;

public class GhostTank2 extends ComputerTank{
//	Overview: A GhostTank is a ComputerTank that you can't see.
	  //(int speed,int hp,Direction or,int pts, int xps, int iq)
	  public GhostTank2(){
		  super(200,1,Direction.SOUTH,50,40,12);
		  gun = new Gun(2,1000,80);
	  }
	  public void drawImage(Graphics g, int x, int y, int w, int h){
	  }
}