001package runwar;
002
003public class Start {
004
005 // for openBrowser
006 public Start(int seconds) {
007 new Server(seconds);
008 }
009
010 public static void main(String[] args) throws Exception {
011 Server server = new Server();
012 server.startServer(args);
013 }
014
015}