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

◆ Thread() [2/5]

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

Definition at line 519 of file Thread.cs.

520 {
521 if (start == null)
522 {
523 throw new ArgumentNullException("start");
524 }
525 _startHelper = new StartHelper(start);
526 Initialize();
527 }
StartHelper _startHelper
Definition Thread.cs:164

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