package Pieces; import Game.Player; public class Bishop extends BoardSquare { public Bishop(){ this.hasMoved = false; horiz = false; vert = false; diag = true; bidirectional = true; limit = 0; symbol = 'B'; imagename = "Bishop.png"; } public Bishop(int x, int y, Player player){ this(); this.x = x; this.y = y; this.owner = player; } }