예제 #1
0
 public SimEngine()
 {
     simCore          = new SimCore();
     logPlayer        = null;
     coordinator      = null;
     simModelFile     = null;
     serverPortNumber = null;
     replayLogger     = null;
     textChatServer   = null;
     whiteboardServer = null;
     voiceServer      = null;
     //handshakeManager = null;
     viewManager = null;
 }
예제 #2
0
 public void StartTextChatServer()
 {
     textChatServer       = new TextChatServer(simModelFile, ref simCore.distributor);
     textChatServerThread = new Thread(new ThreadStart(textChatServer.StartTextChatServer));
     textChatServerThread.Start();
 }