System.out.println("Loading the world...");
WorldState world = new WorldState();
Dispatcher worldDispatcher = new Dispatcher(world);
NewConnectionListener server = new NewConnectionListener(worldDispatcher, "localhost", 25565, 1);
new Thread(server).start();
while(true) {
try {
Thread.sleep(5000);