/** * Start a new game between two computer players using a game server */ public void StartServerGame() { if (!m_serverGame && m_compi != null) { m_compi.Finish(); } // start client thread m_gc.StartGame(); m_view.PrepareBoard(); m_serverGame = true; }