* @param args
*/
public static void main(String[] args) {
//preparing environment
GameEnvironment env = new GameEnvImpl(null, 2, "Francais");
env.bag().fill();
b = env.board();
ia = new DecoAI(env, "trololol", 0, null);
DecoAI ia2 = new DecoAI(env, "loiloiloi", 1, null);
ia2.getRack().fill();
ia.getRack().fill();
env.addPlayer(ia);
env.addPlayer(ia2);
algo = new SimpleSimulator(
new DawgMoveGen(env, ia,(DAWGItf) env.getDictionary(),
new BestMoves(new EvaluatorImpl(env, null), 5))
, env, ia);
//preparing GUI
JButton bouton = new JButton("Continuer");
pan = new BoardPanel(b);