Skip to content
Snippets Groups Projects
Commit 0f2b625b authored by PILLODS OLIVIER's avatar PILLODS OLIVIER
Browse files

Merge branch 'dev-tuna' into 'main'

King class creation

See merge request !2
parents 259fcbda 5d19e94e
1 merge request!2King class creation
package model;
import java.util.ArrayList;
public class King extends Piece {
public King(Position p, int color) {
super(p, color);
}
public ArrayList<Position> getAvailableMoves(Board b) {
// creates a dynamic list of available moves
ArrayList<Position> moves = new ArrayList<Position>();
Position arrival;
if(color == Piece.WHITE) { // black and white have an opposite direction behavior
// King white move
}
else {
// King black move
}
return moves;
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment