import javax.swing.ImageIcon; public class Tile extends Collidable { public Tile(int x, int y, int w, int h, ImageIcon i) { super(x, y, w, h, i); } }