Commit a437491d authored by MACE Lloyd's avatar MACE Lloyd

Upload New File

parent 1864e986
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package mcts;
import tictactoecodingame.Coup;
import tictactoecodingame.Joueur;
/**
*
* @author Lloyd
*/
public class Util {
public static Joueur swapJoueur(Joueur currentJoueur, Joueur joueur1, Joueur joueur2) {
if (currentJoueur == joueur1) {
currentJoueur = joueur2;
} else {
currentJoueur = joueur1;
}
return currentJoueur;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment