public void handle(Event arg0)
{
String gameName = InputBox.Show("Question", "Quel est le nom de votre partie ?");
if(gameName != null)
{
Thread server = new Thread(new Server());
server.start();
try {
Thread.currentThread().sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();