Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros
ThreadHandle.cs
Go to the documentation of this file.
1namespace System.Threading;
2
3internal readonly struct ThreadHandle
4{
5 private readonly IntPtr _ptr;
6
7 internal ThreadHandle(IntPtr pThread)
8 {
9 _ptr = pThread;
10 }
11}