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

◆ SetUInt32Value()

void System.Threading.LowLevelLifoSemaphore.Counts.SetUInt32Value ( uint value,
byte shift )
inlineprivate

Definition at line 41 of file LowLevelLifoSemaphore.cs.

42 {
43 _data = (_data & ~(4294967295uL << (int)shift)) | ((ulong)value << (int)shift);
44 }

References System.Threading.LowLevelLifoSemaphore.Counts._data, and System.value.