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

◆ Clamp() [2/2]

static ushort INumber< ushort >. System.UInt16.Clamp ( ushort value,
ushort min,
ushort max )
inlinestatic

Definition at line 428 of file UInt16.cs.

429 {
430 return Math.Clamp(value, min, max);
431 }

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