
public class Enemy extends Entity {

	public Enemy(String ref, Game game, int x, int y, int rx, int ry, int rw, int rh) {
		super(ref, x, y, rx, ry, rw, rh, true); // "sprites/block.png"
	}

	public void collidedWith(Entity other) {
		
	}
}
