Menu game mode + bot idiot
This commit is contained in:
22
fr/iut_fbleau/Bot/AlphaBetaBot.java
Normal file
22
fr/iut_fbleau/Bot/AlphaBetaBot.java
Normal 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.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user