root/Project Folder/bump_n_jump/Tile.java
added a new folder called Project Folder that contains the Eclipse project i've been using. Should be able to compile & run when put into eclipse.
package bump_n_jump;
import java.awt.image.BufferedImage;
public class Tile extends StaticLevelElement {
public static final double DEFAULT_WIDTH = 25;
public static final double DEFAULT_HEIGHT = 25;
public Tile(double x, double y, BufferedImage bi) {
super(x, y, DEFAULT_WIDTH, DEFAULT_HEIGHT, bi);
}
} |