
public class Block extends Entity {

//	boolean sideBlock = false;
	
	public Block(String ref, int x, int y, int rx, int ry, int rw, int rh) {
		super(ref, x, y, rx, ry, rw, rh, true); // "sprites/block.png"
		
//		this.sideBlock = sideBlock;
	}

	public void collidedWith(Entity other) {
		
	}
}
