Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IAsyncLocal.cs
Go to the documentation of this file.
1namespace System.Threading;
2
3internal interface IAsyncLocal
4{
5 void OnValueChanged(object previousValue, object currentValue, bool contextChanged);
6}
void OnValueChanged(object previousValue, object currentValue, bool contextChanged)