Menu game mode + bot idiot

This commit is contained in:
2026-01-26 13:41:48 +01:00
parent b97b9cef69
commit 031b23c7c5
6 changed files with 291 additions and 71 deletions

View File

@@ -0,0 +1,22 @@
package fr.iut_fbleau.Bot;
import fr.iut_fbleau.GameAPI.AbstractGamePlayer;
import fr.iut_fbleau.GameAPI.AbstractPly;
import fr.iut_fbleau.GameAPI.IBoard;
import fr.iut_fbleau.GameAPI.Player;
/**
* Bot Alpha-Beta (préparé).
* Pour l'instant non implémenté.
*/
public class AlphaBetaBot extends AbstractGamePlayer {
public AlphaBetaBot(Player p) {
super(p);
}
@Override
public AbstractPly giveYourMove(IBoard board) {
throw new UnsupportedOperationException("AlphaBetaBot non implémenté pour l'instant.");
}
}