
public class EnemyBouncer extends Entity {
	
	boolean left = true;
	
	public EnemyBouncer (int x, int y, boolean left) {
		super("sprites/block.png", x, y, -1, -1, -1, -1, true); // "sprites/block.png" // TODO NO SPRITE
		
		this.left = left;
	}

	public void collidedWith(Entity other) {
		
	}
}
