package game.server;
import java.io.IOException;
import game.impl.NetworkGameControllerServer;
public class Server {
private NetworkGameControllerServer gameControllerServer;
public static void main(String[] args) throws Exception {
final Server server = new Server();
server.start();
}
public void start() throws IOException {
gameControllerServer = new NetworkGameControllerServer();
}
}