예제 #1
0
 static void Main(string[] args)
 {
     ServerProgram server = new ServerProgram();
     server.d_Exit = new GameExitDummy();
     ServerProgram.Public = true;
     new CrashReporter().Start(server.Start);
 }
예제 #2
0
 public static void ServerThreadStart()
 {
     try
     {
         ServerProgram server = new ServerProgram();
         server.d_Exit = exit;
         server.Start();
     }
     catch (Exception e)
     {
         MessageBox.Show(e.ToString());
     }
 }
예제 #3
0
 public static void ServerThreadStart()
 {
     try
     {
         ServerProgram server = new ServerProgram();
         server.d_Exit = exit;
         server.Start();
     }
     catch (Exception e)
     {
         MessageBox.Show(e.ToString());
     }
 }