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

◆ Clamp() [1/2]

static long INumber< long >. System.Int64.Clamp ( long value,
long min,
long max )
inlinestatic

Definition at line 424 of file Int64.cs.

425 {
426 return Math.Clamp(value, min, max);
427 }

References System.Math.Clamp(), and System.value.