Package game.server

Source Code of game.server.Server

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();
   }
}
TOP

Related Classes of game.server.Server

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.