Add isMated() method to ChessEngine

ChessEngine
Justin 2025-06-18 19:33:34 +02:00
parent 892e994739
commit 3dade8ce84
1 changed files with 4 additions and 0 deletions

View File

@ -71,4 +71,8 @@ public class ChessEngine {
}
}
public boolean isMated() {
return board.isMated();
}
}