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; }
public void StartTextChatServer() { textChatServer = new TextChatServer(simModelFile, ref simCore.distributor); textChatServerThread = new Thread(new ThreadStart(textChatServer.StartTextChatServer)); textChatServerThread.Start(); }