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

◆ Clamp() [1/2]

static short INumber< short >. System.Int16.Clamp ( short value,
short min,
short max )
inlinestatic

Definition at line 434 of file Int16.cs.

435 {
436 return Math.Clamp(value, min, max);
437 }

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