Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ StartTcpClient()

static void Terraria.Netplay.StartTcpClient ( )
inlinestatic

Definition at line 633 of file Netplay.cs.

634 {
635 Thread thread = new Thread(TcpClientLoop);
636 thread.Name = "TCP Client Thread";
637 thread.IsBackground = true;
638 thread.Start();
639 }
void Start(object? parameter)
Definition Thread.cs:574
static void TcpClientLoop()
Definition Netplay.cs:407

References System.Threading.Thread.Start(), and Terraria.Netplay.TcpClientLoop().

Referenced by Terraria.Main.OnSubmitServerPassword(), Terraria.Main.SelectPlayer(), and Terraria.Main.StartClientGameplay().