root/Project Folder/bump_n_jump/Tile.java

User picture

Author: ahaurw01

Revision: 85 («Previous)


File Size: 339 Bytes

(April 07, 2009 16:46 UTC) About 3 years ago

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.

 
Show/hide line numbers
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);
	}
	
	
	
}