constructeur dans les humain et ai

This commit is contained in:
Cyprien111
2025-04-07 08:30:36 +02:00
parent 707ad73291
commit e27f842198
3 changed files with 26 additions and 1 deletions

View File

@@ -5,6 +5,18 @@ import java.util.Random;
public class GomokuAI extends Player{
//------------------Constructors--------------------------
/**
* The constructor of the Human.
* @param name The name of the player.
* @param color The color of the player.
*/
public GomokuAI(String name,Color color){
super(name,color);
}
/**
* This class is an extends of the class Player, this allows the GomokuAI to choose his move.
*/