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

◆ Decrement() [4/4]

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

Definition at line 139 of file Interlocked.cs.

140 {
141 return (ulong)Add(ref Unsafe.As<ulong, long>(ref location), -1L);
142 }

References System.Add, and System.L.