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

◆ Thread() [4/5]

System.Threading.Thread.Thread ( ParameterizedThreadStart start)
inline

Definition at line 546 of file Thread.cs.

547 {
548 if (start == null)
549 {
550 throw new ArgumentNullException("start");
551 }
552 _startHelper = new StartHelper(start);
553 Initialize();
554 }
StartHelper _startHelper
Definition Thread.cs:164

References System.Threading.Thread._startHelper, System.Threading.Thread.Initialize(), and System.start.