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

◆ Clamp() [1/2]

static char INumber< char >. System.Char.Clamp ( char value,
char min,
char max )
inlinestatic

Definition at line 977 of file Char.cs.

978 {
979 return (char)Math.Clamp(value, min, max);
980 }

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