コード例 #1
0
ファイル: Network.cs プロジェクト: Alex-Rose/Battleship-AI
 public Network()
 {
     m_listener = new TcpListener(IPAddress.Any, 5430);
     m_listenThread = new Thread(Listen);
     m_listenThread.Start();
     m_gameOptions = new GameOptions();
 }
コード例 #2
0
ファイル: Network.cs プロジェクト: Alex-Rose/Battleship-AI
 public GameStartEventArgs(GameOptions gameOptions)
 {
     GameOptions = gameOptions;
 }