File size: 544 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
package serveur.src;
import serveur.src.controleurs.allumettes.ServeurAllumettes;
import serveur.src.controleurs.pendu.ServeurPendu;
import serveur.src.controleurs.tictactoe.ServeurTicTacToe;
public class ServeurMain {
public static int PORT = 6000;
public static String HOTE = "127.0.0.1";
public static void main(String[] args) {
System.out.println(">> Lancement du serveur principal.");
new ServeurPendu(HOTE, PORT);
new ServeurAllumettes(HOTE, PORT);
new ServeurTicTacToe(HOTE, PORT);
}
}
|