
public class Background extends Entity {

	public Background(String ref, Game game, int x, int y) {
		super(ref, x, y, -1, -1, -1, -1, false);
	}
	
	public void collidedWith(Entity other) {
		
	}
}
