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

◆ Decrement() [3/4]

static uint System.Threading.Interlocked.Decrement ( ref uint location)
inlinestatic

Definition at line 132 of file Interlocked.cs.

133 {
134 return (uint)Add(ref Unsafe.As<uint, int>(ref location), -1);
135 }

References System.Add.