11 lines
222 B
Java
11 lines
222 B
Java
|
// Cette classe specifie une API pour interagir avec le moteur
|
||
|
|
||
|
public interface Bot{
|
||
|
|
||
|
|
||
|
// Replace boolean by the class used to return the play the Bot just did
|
||
|
public boolean jouerCoup(Grid grille, int score);
|
||
|
|
||
|
}
|
||
|
|