コード例 #1
0
ファイル: Server.cs プロジェクト: Minstreams/FloorBlaster
 void CallConnect(TcpClient client)
 {
     NetworkSystem.CallMainThread(() =>
     {
         connections.Add(new Connection(client, this, NewTcpId(client.Client.RemoteEndPoint as IPEndPoint)));
     });
 }
コード例 #2
0
ファイル: Server.cs プロジェクト: Minstreams/FloorBlaster
 public void CloseConnection(Connection conn)
 {
     NetworkSystem.CallMainThread(() =>
     {
         conn.Destroy();
         connections.Remove(conn);
     });
 }
コード例 #3
0
ファイル: Server_Call.cs プロジェクト: Minstreams/My-Assets
 static void CallShutdownServer() => NetworkSystem.CallMainThread(NetworkSystem.ShutdownServer);