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

◆ Clamp() [1/2]

static int INumber< int >. System.Int32.Clamp ( int value,
int min,
int max )
inlinestatic

Definition at line 424 of file Int32.cs.

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

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